﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Baloo 2';
}

.page-content {
    height: 800px;
    width: 100%;
    background-image: url("/AEA/image/singin-background.png") !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.forgot-password-container {
    width: 100%;
    height: auto;
    min-height: 375px;
    display: flex;
    justify-content: flex-end;
}

.container-form {
    width: 100%;
    margin-right: 320px;
    margin-top: 21px;
    padding: 40px;
    background: white;
    max-width: 600px;
    max-height: 375px;
}

    .container-form h1 {
        font-size: 60px;
        font-weight: 700;
        margin-bottom: 24px;
    }

    .container-form p {
        font-size: 16px;
        margin-bottom: 24px;
        color: black;
    }

    .container-form .form-control {
        height: 40px;
        font-size: 16px;
        border: 1px solid #ddd;
    }

.form-control::placeholder {
    color: #999;
    font-size: 16px;
}

.filter-option-inner-inner {
    font-size: 16px;
    background-color: white;
}

.filter-option-inner {
    background-color: white;
}

.form-label {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

    .form-label span {
        color: #E31837;
    }

.box {
    margin-bottom: 24px;
}

.btn-next {
    width: 100%;
    background: #E84E0E;
    border: none;
    height: 40px;
    font-size: 14px;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

    .btn-next:hover {
        background: #cc400c;
        transform: scale(1.02);
    }

input[type=text] {
    border-radius: 0px;
}
/* Large Screens */

@media (min-width: 992px) and (max-width: 1199px) {
    .container-form {
        max-width: 550px;
        margin-right: 100px;
    }

        .container-form h1 {
            font-size: 48px;
        }
}
/* Medium Screens */
@media (min-width: 768px) and (max-width: 991px) {
    .container-form {
        max-width: 500px;
        padding: 35px;
        margin-right: 50px;
    }

        .container-form h1 {
            font-size: 40px;
        }

    .forgot-password-container {
        justify-content: center;
    }
}
/* Small Screens */

@media (min-width: 576px) and (max-width: 767px) {
    .container-form {
        max-width: 450px;
        padding: 30px;
        margin: 0 auto;
    }

        .container-form h1 {
            font-size: 36px;
        }

    .btn-next {
        height: 46px;
    }

    .container-form .form-control {
        height: 46px;
    }

    .forgot-password-container {
        justify-content: center;
    }
}
/* Extra Small Screens */

@media (max-width: 575px) {
    .page-content {
        height: 579px !important;
        align-items: flex-end;
        padding-top: 30px;
    }

    h2 {
        font-size: 60px !important;
    }

    .forgot-password-container {
        min-height: 467px;
        justify-content: center;
    }

    .container-form {
        max-width: 90%;
        padding: 25px 20px;
        margin: 0 auto;
        max-height: 450px;
    }

        .container-form h1 {
            font-size: 32px;
            margin-bottom: 16px;
        }

        .container-form p {
            font-size: 14px;
            margin-bottom: 16px;
        }

    .form-label {
        font-size: 14px;
    }

    .btn-next {
        height: 44px;
        font-size: 14px;
    }

    .container-form .form-control {
        height: 44px;
    }
}
/* Very Small Screens */

@media (max-width: 400px) {
    .page-content {
        padding-top: 20px;
    }

    .container-form {
        padding: 20px 15px;
    }

        .container-form h1 {
            font-size: 28px;
        }

    .btn-next {
        height: 40px;
    }

    .container-form .form-control {
        height: 40px;
        font-size: 14px;
    }
}
/* iPhone SE and other small devices */

@media (max-width: 375px) { /*.page-content {*/ /*    min-height: 100vh;*/ /*}*/

    .container-form h1 {
        font-size: 26px;
    }

    .container-form p {
        font-size: 13px;
    }

    h2 {
        font-size: 55px !important;
    }
}
/* Height-based media queries for shorter screens */

@media (max-height: 700px) {
    .page-content {
        min-height: 600px;
    }

    .container-form {
        padding: 25px 20px;
    }

        .container-form h1 {
            margin-bottom: 16px;
        }

    .box {
        margin-bottom: 16px;
    }
}
/* For landscape orientation on mobile */

@media (max-width: 767px) and (orientation: landscape) {
    .page-content {
        padding: 20px 0;
        min-height: 450px;
    }

    .container-form {
        padding: 20px;
    }

        .container-form h1 {
            font-size: 28px;
            margin-bottom: 12px;
        }

        .container-form p {
            margin-bottom: 12px;
        }

    .box {
        margin-bottom: 15px;
    }
}
