.login-card {
    background: white;
    border-radius: 30px;
    margin: 80px 30px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}
.login-card .logo {
    font-size: 48px;
    margin-bottom: 10px;
}
.login-card h3 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 24px;
}
.login-card p.subtitle {
    color: #555;
    font-size: 14px;
    margin-bottom: 15px;
}
.input-icon {
    position: relative;
    margin-bottom: 0px;
}
.input-icon i {
    position: absolute;
    left: 10px;
    top: 20px;
    transform: translateY(-50%);
    color: #999;
}
.input-icon input {
    padding-left: 30px;
    border-radius: 10px;
    border: 1px solid #ddd;
    width: 100%;
    height: 40px;
    font-size: 14px;
}
.forgot {
    text-align: right;
    font-size: 12px;
    margin-bottom: 20px;
}
.forgot a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}
.login-btn {
    width: 100%;
    height: 44px;
    border-radius: 10px;
    background: #6aaef6;
    color: white;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 20px;
    padding: 10px 50px 10px 50px;
}
.login-btn:hover {background: #212212; color: white;}
.bottom-text {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
}
.bottom-text a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
}
.divider {
    border-top: 1px solid #ddd;
    margin: 20px 0;
}
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.social-buttons button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-size: 18px;
    padding: 0px;
}