:root {
    --primary-color: #c96d7c;
    --primary-dark: #b05a69;
    --text-light: #ffffff;
    --text-dark: #333333;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/landing_page_background.png');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 400px;
    min-height: 100vh;
    padding: 20px;
    position: relative;
}

.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
}

.back-button a {
    color: white;
    font-size: 24px;
}

.login-content {
    margin-top: 80px;
}

h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}

.login-subtitle {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.4;
    opacity: 0.9;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
}

.form-group input {
    padding: 15px;
    border-radius: 8px;
    border: none;
    background: white;
    color: var(--text-dark);
    font-size: 16px;
}

.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.forgot-password {
    color: var(--text-light);
    text-decoration: none;
}

.login-button {
    background-color: #996060 !important;
    border: 1px solid #996060 !important;
    border-radius: 25px;
    box-shadow: 0 1px 3px #fff !important;
    color: white;
    padding: 15px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s;
}

.login-button:hover {
    background: var(--primary-dark);
}

.validation-summary {
    margin-top: 10px;
    font-size: 14px;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.social-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.google {
    background-color: white;
    color: #DB4437;
}

.facebook {
    background-color: #1877F2;
    color: white;
}

.apple {
    background-color: white;
    color: black;
}

.signup-prompt {
    margin-top: 40px;
    text-align: center;
}

.signup-prompt a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
}

.w-100 {
    width: 100%;
}

@media (min-width: 768px) {
    .login-container {
        min-height: auto;
        background-color: rgba(0, 0, 0, 0.6);
        border-radius: 16px;
        max-width: 450px;
    }
}