* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    background-image: url('Imagem/fundo.jpg'); /* Substitua 'caminho_para_sua_imagem.jpg' pelo caminho da sua imagem */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Isso mantém a imagem de plano de fundo fixa enquanto a página é rolada */
    background-color: #F5F5F5; /* Cor de fallback caso a imagem não seja carregada ou suportada */
}

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

.login-form {
    width: 400px;
    padding: 40px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.form-title {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.form-label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    height: 40px;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #ddd;
    background-color: #F5F5F5;
    font-size: 14px;
    color: #333;
    letter-spacing: 1px;
}

.btn-login {
    width: 100%;
    height: 40px;
    background-color: #E60023;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 30px;
}

.btn-login:hover {
    background-color: #C3001E;
}

.form-group-city {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-top: 30px;
}

.form-radio-group {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.form-radio-group input[type="radio"] {
    margin-right: 5px;
}

.form-radio-group label {
    color: #555;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.form-select {
    width: 100%;
    height: 40px;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #ddd;
    background-color: #F5F5F5;
    font-size: 14px;
    color: #333;
    letter-spacing: 1px;
}

.form-select option {
    color: #333;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}
