﻿* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #0d47a1, #1976d2);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.logo img {
    width: 180px;
    margin-bottom: 20px;
}

.login-container h2 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #333;
}

.login-container p {
    margin-bottom: 25px;
    font-size: 14px;
    color: #666;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 12px 30px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 14px;
        outline: none;
        transition: border 0.3s;
    }

        .form-group input:focus,
        .form-group select:focus {
            border-color: #1976d2;
        }

    .form-group label {
        font-size: 13px;
        display: block;
        margin-bottom: 6px;
        color: #444;
    }

.btn-login {
    background-color: #1976d2;
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

    .btn-login:hover {
        background-color: #0d47a1;
    }

.extras {
    margin-top: 15px;
    font-size: 13px;
}

    .extras a {
        color: #1976d2;
        text-decoration: none;
    }

        .extras a:hover {
            text-decoration: underline;
        }

label {
    font-size: 14px;
    color: #444;
    letter-spacing: 0.01em;
    font-family: 'Nunito Sans', sans-serif;
}

.fa-search-into-form-control {
    margin-top: 16px;
    position: absolute;
    z-index: 10;
    margin-left: 10px;
}

.form-control-with-fa-search {
    padding-left: 4rem;
}


.logo-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}