* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #c5a87a 9%, #9b8278 50%, #d4a5a5 80%, #8b7355 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 500px;
    background: #e8e3db89;
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.brand {
    color: #8b7355;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
    opacity: 0.8;
    text-align: center;
}

.heading {
    font-size: 50px;
    margin-bottom: 28px;
    letter-spacing: 1px;
    text-align: center;
    font-weight: 1000;
    color: #333;
    font-family: 'Cinzel Decorative', serif;
    font-variant: small-caps;
}

.form-group {
    margin-bottom: 16px;
    width: 100%;
}

.form-label {
    display: block;
    color: #2C3E50;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #E8E8E8;
    background: white;
    border-radius: 10px;
    font-size: 13px;
    transition: all 0.3s ease;
    outline: none;
    color: #2C3E50;
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
}

.form-input::placeholder {
    color: #ccc;
}

.form-input:focus {
    border-color: #d4a5a5;
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 165, 165, 0.1);
}

.password-group {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 14px;
    top: 29px;
    cursor: pointer;
    color: #999;
    font-size: 20px;
    transition: color 0.2s ease;
}

.toggle-password:hover {
    color: #000000;
}

.forgot-password {
    text-align: right;
    margin-bottom: 20px;
}

.forgot-password a {
    color: #3b3b3b96;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password a:hover {
    color: #c5956b;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #78614cba, #c5956b97);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.022);
    margin-bottom: 18px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.049);
}

.divider {
    text-align: center;
    color: #999;
    margin: 20px 0;
    font-size: 12px;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #E8E8E8;
    z-index: 1;
}

.divider span {
    background: #e8e3db89;
    padding: 0 8px;
    position: relative;
    z-index: 2;
}

.social-login {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    justify-content: center;
    width: 100%;
}

.social-btn {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #E8E8E8;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 600;
    color: #2C3E50;
}

.social-btn:hover {
    transform: translateY(-3px);
    border-color: #d4a5a5;
    box-shadow: 0 8px 20px rgba(212, 165, 165, 0.2);
}

.signup-link {
    text-align: center;
    color: #000000;
    font-size: 12px;
    margin-top: 16px;
}

.signup-link a {
    color: #3b3b3b96;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.signup-link a:hover {
    color: #c5956b;
}