* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    background-color: #fff;
    color: #333;
    height: 100vh;
}

.login-container {
    display: flex;
    height: 100vh;
}

.login-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.login-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 480px;
    min-height: 310px;
    padding: 20px;
    gap: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
}

.login-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-title {
    font-size: 24px;
    margin-top: 30px;
    color: #686868;
    font-weight: 500;
}

.login-message {
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 16px;
}

.continue-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    color: white;
    background-color: #E87722;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s;
    border: none;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

.continue-button span {
    margin-right: 8px;
}

.continue-button:hover {
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.support-link {
    font-size: 12px;
    color: #686868;
    text-decoration: none;
    margin-top: 16px;
}

.support-link:hover {
    text-decoration: underline;
}

.login-logo {
    width: 96px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.login-right {
    background: url('images/fondo-login.png');
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.welcome-title {
    font-size: 24px;
    margin-top: 20px;
    text-align: center;
    color: #333;
}

.app-title {
    font-size: 36px;
    font-weight: 500;
    text-align: center;
    color: #333;
}