﻿.login-wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    font-family: 'Segoe UI', sans-serif;
}

.login-card {
    width: 420px;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
    animation: fadeIn 0.5s ease-in-out;
}

.login-header {
    text-align: center;
    margin-bottom: 25px;
}

.logo {
    width: 190px;
}

.login-header h1 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #1e3c72;
}

.login-header p {
    font-size: 13px;
    color: #666;
}

.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

    .form-group label {
        margin-bottom: 6px;
        font-size: 14px;
        color: #444;
    }

.form-control {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: 0.3s;
    font-size: 14px;
}

    .form-control:focus {
        border-color: #2a5298;
        outline: none;
        box-shadow: 0 0 0 2px rgba(42,82,152,0.2);
    }

.remember {
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.btn-login {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

    .btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

.login-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 12px;
    color: #888;
}

.powered {
    font-size: 12px;
    color: #555;
}
    .powered a {
        text-decoration: none !important;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
