br {
    display: block;
    content: "";
    margin-top: 7%;
}

body {
    font-family: 'Arial', sans-serif;
    background-image: url('../assets/register_login_back.jpg');
    /* Adjust path as needed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0 5%;
    padding-bottom: 100px;
}

a {
    text-decoration: none;
}
.container {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 380px;
    text-align: left;
    animation: fadeIn 0.5s ease-in-out;
}

.rem_page {
    color: white;
    width: 40%;
    font-size: 1.2em;
    max-width: 500px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h2 {
    color: #0077cc;
    text-align: center;
    margin-bottom: 15px;
}

label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

input {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    display: block;
}

.password-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-container input {
    flex: 1;
}

.toggle-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #555;
}
.otpcontainer {
    background-color: white;
    width: 300px;
    padding: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);  /* Centers the popup */
    z-index: 1000;
    display: none;  /* Hidden by default */
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.otpcontainer input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.otpcontainer button {
    background-color: #0077cc;
    color: white;
    padding: 10px;
    border: none;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

.otpcontainer button:hover {
    background-color: #005fa3;
}

button {
    background-color: #0077cc;
    color: white;
    padding: 10px;
    border: none;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 10px;
}

button:hover {
    background-color: #0056a3;
}

#numwarn {
    color: red;
    font-size: small;
    margin-left: 5%;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin: auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

a {
    text-decoration: none;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a237e;
    color: white;
    text-align: center;
    padding: 0px 10px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

footer a {
    color: #ffffff;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 3px;
    transition: background 0.3s;
}

footer a:hover {
    background-color: #3949ab;
}

.disclaimer {
    font-size: 13px;
    color: #555;
    margin: 10px 0;
    text-align: center;
}

.disclaimer a {
    color: #007bff;
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}
.secondary-button {
    background-color: #f1f3f4;
    color: #0056a3;
    border: 1px solid #0056a3;
}

.secondary-button:hover {
    background-color: #e3efff;
    color: #003f7f;
}
