
#loginForm{
   padding-top: 60px;
}

.container-conta{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height:500px;
    background: url(../images/a.roy/tech.png) no-repeat center;
    background-size: cover;
    
}
.container {
   transform: translatey(27px);
   
    padding-top: 60px;
    color: #fff;
    width: 350px;
    background: #1e1e1e84;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    
}

h2 {
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #1e1e1e84;
    color: white;
    font-size: 16px;
    outline: none;
}
input::placeholder{
    color: white;
}
.toggle-password {
    position: absolute;
    right: 10px;
    top: 35px;
    cursor: pointer;
    font-size: 14px;
    color: #bbb;
}

.btn {
    width: 100%;
    padding: 10px;
    background: #1cd8d2cf;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.btn:hover {
    background: #1cd8d28c;
}

.forgot-password {
    display: block;
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
    color: #1cd8d28c;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.forgot-password:hover {
    color:#1cd8d2;
    text-decoration: underline;
}

.toggle-form {
    margin-top: 10px;
    font-size: 14px;
    cursor: pointer;
    color: #bbb;
}

.toggle-form:hover {
    color: #fff;
}

.hidden {
    display: none;
}

/* Modal de Recuperação */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.close-btn {
    color: #ff5555;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #ff0000;
}
