* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-container {
    display: flex;
    width: 900px;
    height: 550px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Lado da Imagem */
.image-side {
    flex: 1;
    background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?auto=format&fit=crop&q=80&w=1000'); /* Imagem de estrada similar */
    background-size: cover;
    background-position: center;
}

/* Lado do Formulário */
.form-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.login-box {
    width: 100%;
    max-width: 320px;
    text-align: center;
}

h2 {
    font-size: 16px;
    letter-spacing: 2px;
    color: #555;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Grupo de Inputs lado a lado */
.input-group {
    display: flex;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

input {
    width: 50%;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 13px;
}

    input:first-child {
        border-right: 1px solid #ddd;
    }

    input::placeholder {
        color: #ccc;
    }

/* Botão Verde */
.btn-signin {
    width: 100%;
    padding: 15px;
    background-color: #00b36b; /* Verde da imagem */
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    transition: background 0.3s;
}

    .btn-signin:hover {
        background-color: #00965a;
    }

/* Links */
.links {
    margin-top: 15px;
}

.forgot-link {
    font-size: 10px;
    color: #00b36b;
    text-decoration: none;
}

.footer-link {
    margin-top: 100px; /* Espaçamento para o Sign Up no rodapé */
}

    .footer-link a {
        font-size: 12px;
        color: #00b36b;
        text-decoration: none;
        font-weight: 600;
        letter-spacing: 1px;
    }

/* Responsividade Básica */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        width: 90%;
        height: auto;
    }

    .image-side {
        height: 200px;
    }

    .form-side {
        padding: 40px 20px;
    }
}
