   @import url('../awesome/css/all.min.css');
   /* Reset */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body, html {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
}

/* Container */
.login-container {
    display: flex;
    height: 100vh;
}

/* Left Side - Form */
.login-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.1);
    
    background: linear-gradient(45deg, rgba(0, 120, 164, 0.5), rgba(0, 173, 239, 0.5)), url('../img/fundos/fundo_padrao.png');
    background-size: cover;
    background-position: center;
    
    background-repeat: no-repeat;
}

.login-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: left;
    transition: transform 0.3s ease;
}

.login-card:hover {
    transform: translateY(-10px);
}

.login-card h1 {
    font-size: 2.5rem;
    color: #1c2b7f;
    margin-bottom: 10px;
    font-weight: 700;
}

.login-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.input-field {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    background-color: #f9f9f9;
    padding-left: 40px;
}

.input-field:focus {
    border-color: #4e73df;
    background-color: #fff;
}

.input-icon {
    position: absolute;
    left: 15px;
    color: #bbb;
    top: calc(50% - 18px);
}

.input-container {
    position: relative;
}

.btn-login {
    width: 100%;
    padding: 16px;
    background-color: #4e73df;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
    background-color: #3a5bdc;
}

.footer-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #888;
}

.footer-text a {
    color: #4e73df;
    text-decoration: none;
}

/* Right Side - Image with Gradient */
.login-right {
    flex: 1;
    background: linear-gradient(45deg, rgba(0, 120, 164, 0), rgba(0, 173, 239, 0)), url('../img/login.jpeg');
    background-size: contain;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
    background-color: #faf7ee;
    background-repeat: no-repeat;
   
}

.login-right::before {
    content: '';
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.login-right h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    display: none;
}

.login-right p {
font-size: 10pt;
position: absolute;
bottom: 30px;
color: #186a75;
width: 90%;
text-align: center;
left: 5%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    .login-right {
        height: 250px;
        border-left: none;
        border-radius: 0;
        display: none;
    }

    .login-left {
        padding: 20px;
    }

    .login-card {
        padding: 30px;
    }
}