.login-wrapper, .register-wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(255,255,255);
    background: linear-gradient(51deg, rgba(255,255,255,1) 0%, rgba(254,254,254,1) 64%, rgba(0,212,255,0.33657212885154064) 100%);
}

.login-container {
    max-width: 400px;
    width: 100%;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.register-container {
    max-width: 500px;
    width: 100%;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.btn-auth {
    background-color: #2490eb;
    color: #ffffff;
    border-radius: 3px;
    font-size: 14px;
    padding: 10px 20px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.btn-auth:hover {
    background-color: #18100f;
    color: #ffffff;
}

.disabled-btn {
    background-color: #979797 !important; /* Light grey background for disabled state */
    border: none;
    cursor: not-allowed; /* Change cursor to indicate non-clickable */
    color: #666; /* Adjust text color for better contrast */
}

.btn-auth {
    background-color: #007bff; /* Default active color */
    color: #fff;
}

.btn-auth:not(.disabled-btn):hover {
    background-color: #0056b3; /* Darker blue on hover when enabled */
}