* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.login-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.input-group input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    transition: border 0.3s;
}

.input-group input:focus {
    border-color: #6e8efb;
}

.login-btn {
    background-color: var(--cor-empresa);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: var(--cor-empresa);
}

.register-text {
    margin-top: 15px;
    color: #666;
}

.register-text a {
    color: var(--cor-empresa);
    text-decoration: none;
}

.register-text a:hover {
    text-decoration: underline;
}


.box-aviso {
    max-width: 600px;
    margin: 20px auto;
    padding: 15px 20px;
    background-color: #f9f9f9;
    border: 1px solid #d1d1d1;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.text-aviso {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    text-align: left;
}

.text-aviso a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.text-aviso a:hover {
    text-decoration: underline;
}

.input-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 35px;
    cursor: pointer;
    font-size: 1.2em;
}
