body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #e1e3e3;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}


.wrapper {
    width: 900px;
    height: 600px;
    display: flex;
    background: white;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    overflow: hidden;
}

.left-panel h1 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.4;
}


.left-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0; /* Removemos o padding para ocupar tudo */
}

.left-panel .info {
    width: 100%;
    height: 100%;
}

.illustration {
    width: 100%;
    height: 100%;
    object-fit:cover; /* cobre toda a área sem distorcer, cortando se necessário */
    display: block;
}

/* Lado direito com o formulário */
.right-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.form-box {
    width: 80%;
    max-width: 320px;
    text-align: center;
}

.logo {
    width: 70%;
    margin-bottom: 20px;
}

h2 {
    margin-bottom: 24px;
    color: #333;
}

/* Campos do formulário */
form p {
    text-align: left;
    margin-bottom: 16px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #6d7e7f;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 6px;
    box-sizing: border-box;
}

/* Botões */
.btn-primary {
    background-color: #6d7e7f;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

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

.btn-secondary {
    background: transparent;
    color: #6d7e7f;
    border: 2px solid #6d7e7f;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.btn-secondary:hover {
    background-color: #dce2e1;
}

/* Checkbox + link */
.checkbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin: 12px 0;
}

.footer-text {
    margin-top: 30px;
    font-size: 15px;
    color: #333;
    text-align: center;
}
