.login-button {
    position: relative; 
    padding: 0px 15px;
    display: block;
    box-sizing: border-box;
    width: 200px;
    font-weight: 700;
    margin-left: auto;
    height: 50px;
    margin-right: auto;
    color: black;
    border-radius: 13px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    overflow: hidden;
}

.login-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0turn, rgba(242, 255, 7, 1) 0%, rgba(92, 255, 5, 1) 100%);
    border-radius: 7px; 
    z-index: -1; 
    transition: opacity 0.2s ease-in-out;
    opacity: 1; 
}

.login-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at center, rgba(66, 66, 66, 1) 0%, rgba(0, 0, 0, 1) 100%);    
    border-radius: 13px; 
    z-index: -1; 
    transition: opacity 0.2s ease-in-out;
    opacity: 0; 
}



.login-button:hover::before {
    opacity: 0; 
}

.login-button:hover::after {
    opacity: 1;
}


form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


form input[type="text"], form input[type="date"], form input[type="password"], form input[type="email"]  {
    color: rgb(0, 0, 0);
    border: 1px solid rgb(207, 207, 207);
    background-color: rgb(255, 255, 255);
    border-radius: 13px;
    font-size: 16px;
    font-weight: 500;
    height: 50px;
    font-family: "Montserrat";
    line-height: 1.33;
    margin: 0;
    outline: none;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
}


.other {
    color: #ffffff !important;
    font-size: 17px;
    z-index: 10000;
    margin-top: 24px;
    font-family: "Montserrat", Arial, sans-serif;
    line-height: 1.55;
    font-weight: 600;
    text-transform: uppercase;
    border-width: 0px;
    border-radius: 7px;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.errorlist li {
    font-family: "Montserrat";
    font-size: 12px;
    font-weight: 500;
    color: red;
}


.successlist li {
    font-family: "Montserrat";
    font-size: 12px;
    font-weight: 500;
    color: green;
}


.errorlist {
    width:100%;
}

