@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Roboto:wght@400&display=swap');

body,
html {
    font-family: 'Poppins', 'Roboto', sans-serif;
}

h1,
h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

p,
label,
input,
button {
    font-family: 'Roboto', sans-serif;
}

body,
html {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f9;
}

.container {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.esquerdo,
.direito {
    width: 50%;
    height: 100%;
}

.esquerdo {
    background-image: url('../../img/fundo_obra.jpg');
    background-size: cover;
    background-position: 20% center;
    background-repeat: no-repeat;
   /* filter: brightness(0.8) blur(2px); */

    /* background: linear-gradient(to left, #F9A825, #BDBDBD, #2E3B4E);*/
    color: #fff;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.esquerdo h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: ce;
}

.esquerdo p {
    font-size: 1.0rem;
    line-height: 1.6;
    margin: 0;
}

.direito {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #444;
    padding: 2rem;
    color: #fff;
    transition: background 0.3s ease;
    text-align: center;
    background: linear-gradient(to left, #FF8C00,  #0b0c0e);
}

.direito:hover {
    background: #444;
}

.logo {
    width: 35%;

    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

.direito:hover .logo {
    transform: scale(1.1);
}

.form-container {
    background: #0b0c0e;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.form-container h2 {
    margin-bottom: 1.5rem;
    color: #FF8C00;
    text-align: center;
    font-weight: bold;
}

.form-container label {
    font-weight: bold;
    color: #ddd;
    margin-bottom: 0.3rem;
    display: block;
}

.form-container .form-control {
    background-color: #555;
    border: none;
    color: #fff;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    padding: 0.75rem;
    transition: background 0.3s ease;
}

.form-container .form-control:focus {
    background-color: #666;
    box-shadow: none;
    outline: none;
}

.btn-primary {
    background-color: #FF8C00;
    border: none;
    width: 100%;
    font-weight: bold;
    padding: 0.8rem;
    border-radius: 8px;
    transition: background 0.3s ease;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #FF7000;
}

.btn-primary:focus {
    box-shadow: none;
}

/* Estilos de animação e feedback */
.form-container .form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group input:focus+label {
    color: #FF8C00;
}
strong{
    color: #FF8C00;
}
small{
    padding-top: 1%;
}

