﻿body {
    display: flex;
    align-items: center;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.login-card {
    background-color:whitesmoke;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    width: 500px;
    padding: 1rem;
}


.btn-primary {
    background-color: #3b82f6;
    border-color: #3b82f6;
    transition: background-color 0.3s ease;
}

    .btn-primary:hover {
        background-color: #2563eb;
        border-color: #2563eb;
    }

.form-control {
    border-radius: 0.5rem;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

    .form-control:focus {
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

.text-link {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .text-link:hover {
        color: #2563eb;
        text-decoration: underline;
    }
