* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f2f2f2;
    margin: 0;
    background-image: url(../Files/landing-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.limiter {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    /* Add padding for smaller screens */
}

.container-login100 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.wrap-login100 {
    width: 100%;
    max-width: 450px;
    /* Limit the maximum width */
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 55px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.login100-form {
    width: 100%;
}

.login100-form-title {
    font-size: 24px;
    color: #333;
    text-align: center;
    display: block;
    margin-bottom: 50px;
    font-weight: 700;
}

.wrap-input100 {
    position: relative;
    width: 100%;
    z-index: 1;
    margin-bottom: 16px;
}

.input100 {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.2;
    display: block;
    width: 100%;
    background: #f5f5f5;
    height: 55px;
    border-radius: 5px;
    padding: 0 30px;
    box-shadow: inset 0 0 0 1px transparent;
    transition: all 0.4s;
}

.input100:focus {
    background: #fff;
    box-shadow: inset 0 0 0 1px #55adf5;
}

.focus-input100 {
    display: block;
    position: absolute;
    border-radius: 5px;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 0 1px transparent;
    transition: all 0.4s;
}

.input100:focus+.focus-input100 {
    box-shadow: inset 0 0 0 1px #55adf5;
}

.flex-sb-m {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.w-full {
    width: 100%;
}

.p-t-3 {
    padding-top: 3px;
}

.p-b-24 {
    padding-bottom: 24px;
}

.txt1 {
    font-size: 14px;
    color: #999;
    line-height: 1.5;
    text-decoration: none;
}

.txt1:hover {
    text-decoration: underline;
}

.container-login100-form-btn {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.login100-form-btn {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    width: 100%;
    height: 50px;
    border-radius: 5px;
    background: #55adf5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    transition: all 0.4s;
    cursor: pointer;
}

.login100-form-btn:hover {
    background: #333;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .wrap-login100 {
        padding: 40px 40px 30px 40px;
        /* Adjust padding for smaller screens */
    }

    .login100-form-title {
        font-size: 20px;
        /* Adjust title size for smaller screens */
        margin-bottom: 30px;
        /* Adjust margin for smaller screens */
    }

    .input100 {
        height: 50px;
        /* Adjust input height for smaller screens */
        padding: 0 20px;
        /* Adjust padding for smaller screens */
    }

    .login100-form-btn {
        height: 45px;
        /* Adjust button height for smaller screens */
        font-size: 14px;
        /* Adjust button font size for smaller screens */
    }
}

@media (max-width: 480px) {
    .wrap-login100 {
        padding: 30px 30px 20px 30px;
        /* Adjust padding for extra small screens */
    }

    .login100-form-title {
        font-size: 18px;
        /* Adjust title size for extra small screens */
        margin-bottom: 20px;
        /* Adjust margin for extra small screens */
    }

    .input100 {
        height: 45px;
        /* Adjust input height for extra small screens */
        padding: 0 15px;
        /* Adjust padding for extra small screens */
    }

    .login100-form-btn {
        height: 40px;
        /* Adjust button height for extra small screens */
        font-size: 12px;
        /* Adjust button font size for extra small screens */
    }
}