﻿.bg-full {
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-color: #f5f5f5;
    background-image: url(/images/bg-mountain.jpg);
}

.flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    margin: 0 auto;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.login-form h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.login-form p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #777;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    width: 100%;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    border-color: #007bff;
    outline: none;
}

.input-group select {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    width: 100%;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.input-group select:focus {
    border-color: #007bff;
    outline: none;
}

.login-button {
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: #374d6c;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: #26354b;
}

.bottom-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    color: #777;
}

.bottom-text p {
    margin-bottom: 10px;
}

.bottom-text a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-text a:hover {
    color: #0056b3;
}

/* Responsive */
@media screen and (max-width: 600px) {
    .login-container {
        width: 100%;
        border-radius: 0;
    }
}
