.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 60px); 
}

.auth-container {
    width: 300px;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.auth-container h2 {
    margin-bottom: 20px;
}
.auth-container input {
    margin-bottom: 16px; 
}

.auth-container button {
    width: 100%;
    padding: 10px;
    background-color: #00BCD4;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.auth-container button:hover {
    background-color: #008C9E;
}

.auth-container label {
    display: block;      
    text-align: left; 
    font-size: 14px; 
    font-weight:550;
    margin-bottom: 5px; 
}
.auth-container .text {
    font-size: 14px;
    margin-top: 10px;
}
.error {
    display: block;
    height: 16px;
    font-size: 11px;
    color: red;
    margin-top: 1px; 
    margin-bottom: 10px; 
    text-align: left;
}

.auth-container .link {
    color: #00BCD4;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.auth-container .link:hover {
    text-decoration: underline;
}
.auth-password-wrapper {
    position: relative;
}

.auth-toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #4DD5E3; 
}


