@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #ecf0f1;
    color: #333;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.content {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #34495e;
}

.label-input {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    text-align: left;
    color: #7f8c8d;
}

input {
    width: 100%;
    height: 45px;
    border: none;
    background-color: #ecf0f1;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

input:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(211, 160, 31, 0.5);
}

.btn {
    display: inline-block;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-second {
    background-color: #D3A01F;
    color: #fff;
}

.btn-second:hover {
    background-color: #fff;
    color: #D3A01F;
    border: 1px solid #D3A01F;
}

/* Fundo */
.background {
    background-image: url('imagensvisualização/fundologin2.png'); /* Caminho da imagem */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.btn-voltar {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 15px 20px;
    background-color: #212529; /* Cor do botão */
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s;
}

.btn-voltar:hover {
    background-color: #d49036; /* Cor ao passar o rato */
}
