/* Responsive Adjustments */

@media (max-width: 768px) {
    .inner-div {
        padding: 15px;
    }
    .title2 {
        font-size: 16px;
    }
    .message2 {
        font-size: 11px;
    }
    .footer {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .inner-div {
        padding: 10px;
    }
    .title2 {
        font-size: 14px;
    }
    .message2 {
        font-size: 10px;
    }
    .footer {
        font-size: 10px;
    }
}

.message-container {
    max-width: 600px;
    padding: 20px;
    box-sizing: border-box;
}

.notification-box {
    background-color: rgba(232, 244, 219, 1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    padding: 50px;
}

.message-box {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.message-box img {
    max-width: 100px;
    margin-bottom: 20px;
}

.message {
    font-size: 18px;
    color: black;
    font-weight: bold;
    margin-bottom: 15px;
}

.sub-message {
    font-size: 13px;
    color: rgba(76, 149, 144, 1);
    line-height: 1.5;
}

body {
    margin: 10px;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url(../img/bg.png) no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 100%;
    max-width: 400px;
    background-color: rgba(232, 244, 219, 1);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

a:hover {
    color: white;
}

.title {
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: rgba(46, 46, 46, 1);
    font-weight: bolder;
    font-family: "Times New Roman";
}

.form-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
}

.form-container h2 {
    margin: 0;
    font-size: 20px;
    text-align: left;
    font-weight: bold;
    color: black;
}

.sub-heading {
    text-align: left;
    font-size: 13.5px;
    color: rgba(76, 149, 144, 1);
    margin-top: 10px;
    margin-bottom: 20px;
}

input[type="email"],
input[type="name"],
input[type="name1"],
input[type="staff"],
select {
    width: 100%;
    padding: 10px;
    border: 0.5px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
    background-color: rgba(235, 235, 235, 1);
    outline: none;
}

input[type="password"],
input[type="text"] {
    width: 100%;
    padding: 10px;
    padding-right: 40px;
    /* Space for the eye icon */
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    outline: none;
    background-color: rgba(235, 235, 235, 1);
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    color: #888;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.forgot-password {
    font-size: 12px;
    color: gray;
    text-decoration: none;
}

.button {
    width: 100%;
    padding: 10px;
    background-color: rgba(76, 149, 144, 1);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
}

.button:hover {
    background-color: rgba(76, 149, 144, 2);
    border: transparent;
}

.register-text {
    text-align: left;
    font-size: 14px;
    margin-top: 10px;
    color: black;
}

.register-text a {
    color: black;
    text-decoration: none;
    margin-left: 15px;
    font-size: 14px;
    font-weight: bolder;
    text-decoration: none;
    text-align: left;
}


/*css for responsive designs */


/* Extra small devices (phones, less than 576px) */

@media (max-width: 575.98px) {
    /* Small mobile screens */
    .title {
        font-size: 14px;
    }
    .outer-div {
        padding: 20px;
    }
    .notification-box {
        background-color: rgba(232, 244, 219, 1);
        padding: 20px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    }
}


/* Small devices (landscape phones, 576px and up) */

@media (min-width: 576px) and (max-width: 767.98px) {
    /* Large mobile screens */
    .title {
        font-size: 16px;
    }
    .outer-div {
        padding: 10px;
    }
}


/* Medium devices (tablets, 768px and up) */

@media (min-width: 768px) and (max-width: 991.98px) {
    /* Tablets and small desktops */
    .title {
        font-size: 18px;
    }
    .outer-div {
        padding: 10px;
    }
}


/* Large devices (desktops, 992px and up) */

@media (min-width: 992px) and (max-width: 1199.98px) {
    /* Regular desktops and laptops */
    .title {
        font-size: 16px;
    }
}


/* Extra large devices (large desktops, 1200px and up) */

@media (min-width: 1200px) {
    /* Large desktops */
    .title {
        font-size: 16px;
    }
}

a {
    text-decoration: none;
    color: white;
}

a:hover {
    text-decoration: none;
    color: white;
}

.outer-div {
    background-color: rgba(225, 239, 236, 1);
    margin: 10px;
    padding: 50px 110px;
}

.inner-div {
    background-color: white;
    padding: 20px;
    max-width: 550px;
}

.content-div {
    margin-bottom: 20px;
}

.title2 {
    color: green;
    font-size: 25px;
    text-align: center;
    font-weight: bold;
}

.message2 {
    font-size: 13px;
    color: black;
    margin-bottom: 15px;
}

.link {
    color: rgba(0, 163, 255, 1);
    text-decoration: none;
}

.footer {
    font-size: 12px;
    color: rgba(97, 97, 97, 1);
}

hr {
    border: 1px solid #ccc;
}

.finxo {
    width: 72px;
    align-items: start;
}

.otp-input {
    width: 50px;
    height: 50px;
    font-size: 20px;
    text-align: center;
    margin: 0 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0px !important;
}