:root {
    --primary-color: #6c63ff;
    --secondary-color: #4d44db;
    --dark-color: #2f2e41;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    min-height: 100vh;
    align-items: center;
}

.login-container {
    max-width: 420px;
    width: 100%;
}

.login-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.login-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 30px;
    text-align: center;
}

.login-body {
    padding: 30px;
    background: white;
}

.form-control {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding-left: 45px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.input-group-text {
    position: absolute;
    z-index: 4;
    height: 50px;
    background: transparent;
    border: none;
    color: #a0a0a0;
}

.btn-login {
    background: var(--primary-color);
    border: none;
    height: 50px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-login:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.divider {
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
    z-index: 1;
}

.divider span {
    position: relative;
    z-index: 2;
    background: white;
    padding: 0 15px;
    color: #a0a0a0;
    font-size: 14px;
}

.social-login i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin: 0 5px;
    transition: all 0.3s;
}

.social-login i:hover {
    transform: translateY(-3px);
}

.login-footer {
    text-align: center;
    padding-top: 20px;
    color: #a0a0a0;
}

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