﻿

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom, #2c3e50, #4ca1af);
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #333;
    margin-bottom: 0;
} 

/*.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 20px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}*/
.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 30px;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #f7f9fc);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: none;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

    .login-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }

    .login-container h2 {
        font-size: 2rem;
        font-weight: 600;
        text-align: center;
        color: #333;
        margin-bottom: 1.5rem;
    }

    .login-container .form-group {
        margin-bottom: 1.5rem;
    }

    .login-container .form-control {
        height: 45px;
        padding: 10px;
        font-size: 1rem;
        border-radius: 0.3rem;
        border: 1px solid #ced4da;
        transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }

        .login-container .form-control:focus {
            border-color: #007bff;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
        }

.btn-primary {
    background-color: #007bff;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    width: 100%;
    padding: 12px;
    border-radius: 0.3rem;
    transition: background-color 0.3s ease, transform 0.2s;
}

    .btn-primary:hover {
        background-color: #0056b3;
        transform: scale(1.02);
    }

.text-center a {
    color: #007bff;
    text-decoration: none;
}

    .text-center a:hover {
        text-decoration: underline;
    }

