* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}


.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px; /* Adjust the size as needed */
    height: 100px; /* Adjust the size as needed */
    z-index: 9999;
}

.loader img {
    width: 100%;
    height: 100%;
    animation: rotate 6s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*Loading Icon*/


body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #fff;
}

.container {
    width: 80%;
    max-width: 700px;
    min-width: 300px;
    background: #fff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    margin: 0 auto;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 30px;
    color: #21075e;
}

span {
    display: block;
    text-align: center;
    margin-bottom: 20px;
    color: #21075e;
    font-size: 20px;
}

form input {
    width: 100%;
    padding: 12px 10px;
    margin: 10px 0;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    font-size: 14px;
}

form input:focus {
    border-bottom: 1px solid #000;
}

button[type="submit"] {
    width: 100%;
    background-color: #21075e;;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 45px;
    border: none;
    padding: 12px;
    margin-top: 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}


button[type="submit"]:hover {
    transform: scale(1.05);
   
}

a {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

a:hover {
    text-decoration: underline;
    transform: scale(1.05);
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    width: 100%;
    padding-right: 40px; /* space for the eye icon */
}

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


.password-strength,
.password-match {
    font-size: 12px;
    margin-top: 5px;
    color: #666;
}

.toggle-container,
.toggle,
.toggle-panel {
    display: none; /* Hide toggle components to match the minimalist style */
}
/*
.loader {
    display: none; /* Hide loader initially 
}*/

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}

input[type="password"] + .password-eye {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
