

.login-content {
    min-height: 100vh;
    background: linear-gradient(135deg, #4e73df, #1cc88a);
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-content h1{
    font-family: niconne;
    font-size: 55px !important;
}

.login-box {
    background: #fff;
    width: 100%;
    max-width: 500px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.8s ease-in-out;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo-img {
    width: 204px;
    margin-bottom: 10px;
}

.logo h1 {
    font-size: 24px;
    color: #4e73df;
    margin: 0;
}

.login-head {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.form-group label {
    font-weight: 600;
    font-size: 13px;
    color: #555;
}

.form-control {
    border-radius: 8px;
    padding: 10px;
}

.btn-primary {
    background-color: #4e73df;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #2e59d9;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
