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

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Arima", sans-serif;
}

body {
    background-image: url('fundo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 100vh;
    color: #103227;
}

.box {
    display: flex;
    width: 950px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.img-box {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #103227;
    position: relative;
}

#opacidade {
    width: 100%;
    opacity: 0.8;
}

/* Sub-background verde */
.sub-background {
    background-color: #103227;
    width: 50%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Formulário com espaçamento e sombreamento */
.form-box {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
}

.form-box h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #103227;
}

.form-box p {
    font-size: 18px;
    font-weight: 700;
    color: #103227;
    margin-bottom: 20px;
}

.form-box p a {
    color: #103227;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.form-box p a:hover {
    color: #0d6a46;
}

.form-box form {
    margin: 20px 0;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: bold;
    color: #103227;
}

.input-group input {
    width: 100%;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    border: 2px solid transparent;
    padding: 12px 18px;
    font-size: 16px;
    color: #424242;
    outline: none;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.input-group input:focus {
    border-color: #103227;
    box-shadow: 0 0 10px rgba(16, 50, 39, 0.2);
}

.input-group button {
    width: 100%;
    height: 55px;
    background-color: #103227;
    border-radius: 12px;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    outline: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.input-group button:hover {
    background-color: #0d6a46;
}
