/* Background */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 15px;
}

/* Card */
.login-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.login-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 150px;
    height: 150px;
    background: rgb(83 0 173 / 15%);
    border-radius: 50%;
}
.login-card::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 120px;
    height: 120px;
    background: rgb(83 0 173 / 15%);
    border-radius: 50%;
}

/* Title */
.login-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #4a30d2;
}
.login-card p {
    color: #555;
    font-size: 14px;
    margin-bottom: 30px;
}

/* Inputs */
.login-card .form-control {
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    transition: 0.3s;
}
.login-card .form-control:focus {
    border-color: #06b6d4;
    box-shadow: 0 0 0 0.2rem rgba(6,182,212,0.25);
}

/* Button */
.login-card .btn-login {
    display: block;
    width: 100%;
    border-radius: 50px;
    background: linear-gradient(135deg, #4a30d2, #391185);
    color: #fff;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}
.login-card .btn-login:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Links */
.login-card .login-links {
    margin-top: 20px;
    font-size: 14px;
}
.login-card .login-links a {
    color: #004aad;
    text-decoration: none;
    font-weight: 500;
}
.login-card .login-links a:hover {
    text-decoration: underline;
}