@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
}

:root {
    --color: rgb(194, 17, 129);
    --black: black;
    --white: white;
    --red: rgb(213, 24, 24);
    --blue: rgb(30, 97, 192);
    --gray: rgb(166, 166, 166);
    --light: rgb(239, 239, 239);
}

.navbar {
    margin-bottom: 5%;
}

.login-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin-bottom: 5%;
}

.login-section .login-title {
    margin-bottom: 3%;
}

.login-section .login-title h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--red);
}

.login-content {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.login-content .login-form {
    width: 45%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: justify;
}

.login-content .login-form img{
    width: 70%;
}

.login-content .login-form form {
    width: 100%;
    text-align: justify;
}

.login-content .login-form form input {
    width: 100%;
    padding: 2%;
    margin-bottom: 3%;
    text-align: justify;
    border: none;
    background-color: var(--light);
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.checkbox-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30px;
    margin-bottom: 2%;
}

.login-content .login-form form button {
    width: 50%;
    padding: 2%;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    border: none;
    background-color: var(--color);
    animation: animate 1s linear infinite;
    transition: 1s;
    text-align: center;
    margin-left: 50%;
    transform: translate(-50%);

}

.login-content .login-form a {
    text-decoration: none;
    color: var(--blue);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: 0.5s;
}

.login-content .login-form a:hover {
    color: var(--color);
}

.login-content .login-form form button:hover {
    background-color: var(--black);
}

.login-content .login-form h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--color);

}

.checkbox {
    width: auto !important;
    margin-bottom: 0% !important;
    margin-right: 3%;
    cursor: pointer;

}

.checkbox-container label {
    color: var(--red) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;


}


.login-content .login-img {
    width: 45%;
    position: relative;
    height: 400px;
    z-index: 0;
    cursor: pointer;
}

.login-content .login-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}


.login-content .login-img .login-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 50%;
    z-index: 0;
    transition: 1s;
}

.login-content .login-img .login-details {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-content .login-img:hover .login-overlay {
    opacity: 70%;
}

.login-content .login-img .login-details h1 {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 35px;
}

.login-content .login-img .login-details h1 span {
    font-size: 40px;
    -webkit-text-stroke: 2px var(--white);
    color: transparent;
}

/*------------------------------ Reg content ---------------------------------------- */

.reg-section {
    width: 100%;
    height: auto;
    text-align: center;
    margin-bottom: 5%;
}

.reg-section .reg-title {
    margin-bottom: 5%;
}

.reg-section .reg-title h1 {
    color: var(--color);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.reg-content {
    display: flex;
    width: 100%;
    height: auto;
    justify-content: space-between;
    cursor: pointer;
}

.reg-img {
    width: 47%;
    height: 500px;
    position: relative;
}

.reg-img img {
    width: 100%;
    height: 100%;
}

.login-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--black);
    opacity: 50%;
    transition: 1s;
}

.reg-content .login-details {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reg-content .login-details h1 {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 35px;
}

.reg-content .login-details h1 span {
    font-size: 40px;
    -webkit-text-stroke: 2px var(--white);
    color: transparent;
}

.reg-content .reg-form {
    height: 500px;
    width: 47%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: justify !important;
}

.reg-content .reg-form img{
    width: 60%;
}

.reg-content .reg-form form {
    text-align: justify !important;
    width: 100%;
}
.reg-content .reg-form h4{
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--color);
}

.reg-content .reg-form form .input-name {
    width: 100%;
    height: auto;

}

.reg-content .reg-form form .input-name input {
    margin-bottom: 3%;
    width: 44.5%;
    text-align: justify !important;
    padding: 2%;
}

.reg-content .reg-img:hover .login-overlay {
    opacity: 70%;
}


.reg-content .reg-form form input {
    width: 90%;
    text-align: justify !important;
    margin-bottom: 3%;
    padding: 2%;
    border: none;
    background-color: var(--light);
}

.reg-content .reg-form form select {
    width: 90%;
    text-align: justify !important;
    margin-bottom: 3%;
    padding: 2%;
    border: none;
    background-color: var(--light);
}

.reg-content .reg-form form button {
    width: 50%;
    padding: 2%;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    border: none;
    background-color: var(--color);
    animation: animate 1s linear infinite;
    transition: 1s;
    text-align: center;
    margin-left: 50%;
    transform: translate(-50%);
    margin-bottom: 3%;

}

.reg-content .reg-form form button:hover{
    background-color: var(--black);

}

.reg-content .reg-form a {
    text-decoration: none;
    color: var(--blue);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: 0.5s;
}

.reg-content .reg-form a:hover {
    color: var(--color);

}






























































































@media screen and (max-width:320px) {

    .login-content {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .login-content .login-form {
        width: 100%;
        height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        text-align: justify;
    }

    .login-content .login-form form {
        width: 100%;
        text-align: justify;
    }

    .login-content .login-form form input {
        width: 100%;
        padding: 2%;
        margin-bottom: 3%;
        text-align: justify;
        border: none;
        background-color: var(--light);
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }

     .login-content .login-form form select {
        width: 100%;
        padding: 2%;
        margin-bottom: 3%;
        text-align: justify;
        border: none;
        background-color: var(--light);
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }
    .checkbox-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 30px;
        margin-bottom: 2%;
    }

    .login-content .login-form form button {
        width: 50%;
        padding: 2%;
        font-family: 'Poppins', sans-serif;
        color: var(--white);
        border: none;
        background-color: var(--color);
        animation: animate 1s linear infinite;
        transition: 1s;
        text-align: center;
        margin-left: 50%;
        transform: translate(-50%);

    }

    .login-content .login-form a {
        text-decoration: none;
        color: var(--blue);
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        transition: 0.5s;
    }

    .login-content .login-form a:hover {
        color: var(--color);
    }

    .login-content .login-form form button:hover {
        background-color: var(--black);
    }

    .login-content .login-form h4 {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        color: var(--color);

    }

    .checkbox {
        width: auto !important;
        margin-bottom: 0% !important;
        margin-right: 3%;
        cursor: pointer;

    }

    .checkbox-container label {
        color: var(--red) !important;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;


    }


    .login-content .login-img {
        width: 100%;
        position: relative;
        height: 400px;
        z-index: 0;
        cursor: pointer;
    }

    /* registration  */

    .reg-content {
        display: flex;
        width: 100%;
        flex-direction: column;
        height: auto;
        justify-content: space-between;
        cursor: pointer;
    }

    .reg-img {
        width: 100%;
        height: 500px;
        position: relative;
    }

    .reg-img img {
        width: 100%;
        height: 100%;
    }

    .login-overlay {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: var(--black);
        opacity: 50%;
        transition: 1s;
    }

    .reg-content .login-details {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        text-align: center !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .reg-content .login-details h1 {
        color: var(--white);
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: 35px;
    }

    .reg-content .login-details h1 span {
        font-size: 40px;
        -webkit-text-stroke: 2px var(--white);
        color: transparent;
    }

    .reg-content .reg-form {
        height: 500px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        text-align: justify !important;
    }

    .reg-content .reg-form form .input-name input {
        margin-bottom: 3%;
        width: 49%;
        text-align: justify !important;
        padding: 2%;
    }
    
    .reg-content .reg-img:hover .login-overlay {
        opacity: 70%;
    }
    
    
    .reg-content .reg-form form input {
        width: 100%;
        text-align: justify !important;
        margin-bottom: 3%;
        padding: 2%;
        border: none;
        background-color: var(--light);
    }
    .reg-content .reg-form form select {
        width: 100%;
        text-align: justify !important;
        margin-bottom: 3%;
        padding: 2%;
        border: none;
        background-color: var(--light);
    }
    

}

@media screen and (min-width:321px) and (max-width:425px) {
    .login-content {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .login-content .login-form {
        width: 100%;
        height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        text-align: justify;
    }

    .login-content .login-form form {
        width: 100%;
        text-align: justify;
    }

    .login-content .login-form form input {
        width: 100%;
        padding: 2%;
        margin-bottom: 3%;
        text-align: justify;
        border: none;
        background-color: var(--light);
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }

    .login-content .login-form form select {
        width: 100%;
        padding: 2%;
        margin-bottom: 3%;
        text-align: justify;
        border: none;
        background-color: var(--light);
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }

    .checkbox-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 30px;
        margin-bottom: 2%;
    }

    .login-content .login-form form button {
        width: 50%;
        padding: 2%;
        font-family: 'Poppins', sans-serif;
        color: var(--white);
        border: none;
        background-color: var(--color);
        animation: animate 1s linear infinite;
        transition: 1s;
        text-align: center;
        margin-left: 50%;
        transform: translate(-50%);

    }

    .login-content .login-form a {
        text-decoration: none;
        color: var(--blue);
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        transition: 0.5s;
    }

    .login-content .login-form a:hover {
        color: var(--color);
    }

    .login-content .login-form form button:hover {
        background-color: var(--black);
    }

    .login-content .login-form h4 {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        color: var(--color);

    }

    .checkbox {
        width: auto !important;
        margin-bottom: 0% !important;
        margin-right: 3%;
        cursor: pointer;

    }

    .checkbox-container label {
        color: var(--red) !important;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;


    }


    .login-content .login-img {
        width: 100%;
        position: relative;
        height: 400px;
        z-index: 0;
        cursor: pointer;
    }

       /* registration  */

       .reg-content {
        display: flex;
        width: 100%;
        flex-direction: column;
        height: auto;
        justify-content: space-between;
        cursor: pointer;
    }

    .reg-img {
        width: 100%;
        height: 500px;
        position: relative;
    }

    .reg-img img {
        width: 100%;
        height: 100%;
    }

    .login-overlay {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: var(--black);
        opacity: 50%;
        transition: 1s;
    }

    .reg-content .login-details {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        text-align: center !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .reg-content .login-details h1 {
        color: var(--white);
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: 35px;
    }

    .reg-content .login-details h1 span {
        font-size: 40px;
        -webkit-text-stroke: 2px var(--white);
        color: transparent;
    }

    .reg-content .reg-form {
        height: 500px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        text-align: justify !important;
    }

    .reg-content .reg-form form .input-name input {
        margin-bottom: 3%;
        width: 49%;
        text-align: justify !important;
        padding: 2%;
    }
    
    .reg-content .reg-img:hover .login-overlay {
        opacity: 70%;
    }
    
    
    .reg-content .reg-form form input {
        width: 100%;
        text-align: justify !important;
        margin-bottom: 3%;
        padding: 2%;
        border: none;
        background-color: var(--light);
    }

    .reg-content .reg-form form select {
        width: 100%;
        text-align: justify !important;
        margin-bottom: 3%;
        padding: 2%;
        border: none;
        background-color: var(--light);
    }
}

@media screen and (min-width:426px) and (max-width:600px) {

    .login-content {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .login-content .login-form {
        width: 100%;
        height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        text-align: justify;
    }

    .login-content .login-form form {
        width: 100%;
        text-align: justify;
    }

    .login-content .login-form form input {
        width: 100%;
        padding: 2%;
        margin-bottom: 3%;
        text-align: justify;
        border: none;
        background-color: var(--light);
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }

    .checkbox-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 30px;
        margin-bottom: 2%;
    }

    .login-content .login-form form button {
        width: 50%;
        padding: 2%;
        font-family: 'Poppins', sans-serif;
        color: var(--white);
        border: none;
        background-color: var(--color);
        animation: animate 1s linear infinite;
        transition: 1s;
        text-align: center;
        margin-left: 50%;
        transform: translate(-50%);

    }

    .login-content .login-form a {
        text-decoration: none;
        color: var(--blue);
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        transition: 0.5s;
    }

    .login-content .login-form a:hover {
        color: var(--color);
    }

    .login-content .login-form form button:hover {
        background-color: var(--black);
    }

    .login-content .login-form h4 {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        color: var(--color);

    }

    .checkbox {
        width: auto !important;
        margin-bottom: 0% !important;
        margin-right: 3%;
        cursor: pointer;

    }

    .checkbox-container label {
        color: var(--red) !important;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;


    }


    .login-content .login-img {
        width: 100%;
        position: relative;
        height: 400px;
        z-index: 0;
        cursor: pointer;
    }

       /* registration  */

       .reg-content {
        display: flex;
        width: 100%;
        flex-direction: column;
        height: auto;
        justify-content: space-between;
        cursor: pointer;
    }

    .reg-img {
        width: 100%;
        height: 500px;
        position: relative;
    }

    .reg-img img {
        width: 100%;
        height: 100%;
    }

    .login-overlay {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: var(--black);
        opacity: 50%;
        transition: 1s;
    }

    .reg-content .login-details {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        text-align: center !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .reg-content .login-details h1 {
        color: var(--white);
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: 35px;
    }

    .reg-content .login-details h1 span {
        font-size: 40px;
        -webkit-text-stroke: 2px var(--white);
        color: transparent;
    }

    .reg-content .reg-form {
        height: 500px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        text-align: justify !important;
    }

    .reg-content .reg-form form .input-name input {
        margin-bottom: 3%;
        width: 49%;
        text-align: justify !important;
        padding: 2%;
    }
    
    .reg-content .reg-img:hover .login-overlay {
        opacity: 70%;
    }
    
    
    .reg-content .reg-form form input {
        width: 100%;
        text-align: justify !important;
        margin-bottom: 3%;
        padding: 2%;
        border: none;
        background-color: var(--light);
    }

    .reg-content .reg-form form select {
        width: 100%;
        text-align: justify !important;
        margin-bottom: 3%;
        padding: 2%;
        border: none;
        background-color: var(--light);
    }
}


@media screen and (min-width:601px) and (max-width:768px) {
    .login-content {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .login-content .login-form {
        width: 100%;
        height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        text-align: justify;
    }

    .login-content .login-form form {
        width: 100%;
        text-align: justify;
    }

    .login-content .login-form form input {
        width: 100%;
        padding: 2%;
        margin-bottom: 3%;
        text-align: justify;
        border: none;
        background-color: var(--light);
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }

    .checkbox-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 30px;
        margin-bottom: 2%;
    }

    .login-content .login-form form button {
        width: 50%;
        padding: 2%;
        font-family: 'Poppins', sans-serif;
        color: var(--white);
        border: none;
        background-color: var(--color);
        animation: animate 1s linear infinite;
        transition: 1s;
        text-align: center;
        margin-left: 50%;
        transform: translate(-50%);

    }

    .login-content .login-form a {
        text-decoration: none;
        color: var(--blue);
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        transition: 0.5s;
    }

    .login-content .login-form a:hover {
        color: var(--color);
    }

    .login-content .login-form form button:hover {
        background-color: var(--black);
    }

    .login-content .login-form h4 {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        color: var(--color);

    }

    .checkbox {
        width: auto !important;
        margin-bottom: 0% !important;
        margin-right: 3%;
        cursor: pointer;

    }

    .checkbox-container label {
        color: var(--red) !important;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;


    }


    .login-content .login-img {
        width: 100%;
        position: relative;
        height: 400px;
        z-index: 0;
        cursor: pointer;
    }
       /* registration  */

       .reg-content {
        display: flex;
        width: 100%;
        flex-direction: column;
        height: auto;
        justify-content: space-between;
        cursor: pointer;
    }

    .reg-img {
        width: 100%;
        height: 500px;
        position: relative;
    }

    .reg-img img {
        width: 100%;
        height: 100%;
    }

    .login-overlay {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: var(--black);
        opacity: 50%;
        transition: 1s;
    }

    .reg-content .login-details {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        text-align: center !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .reg-content .login-details h1 {
        color: var(--white);
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: 35px;
    }

    .reg-content .login-details h1 span {
        font-size: 40px;
        -webkit-text-stroke: 2px var(--white);
        color: transparent;
    }

    .reg-content .reg-form {
        height: 500px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        text-align: justify !important;
    }

    .reg-content .reg-form form .input-name input {
        margin-bottom: 3%;
        width: 49%;
        text-align: justify !important;
        padding: 2%;
    }
    
    .reg-content .reg-img:hover .login-overlay {
        opacity: 70%;
    }
    
    
    .reg-content .reg-form form input {
        width: 100%;
        text-align: justify !important;
        margin-bottom: 3%;
        padding: 2%;
        border: none;
        background-color: var(--light);
    }

    .reg-content .reg-form form select {
        width: 100%;
        text-align: justify !important;
        margin-bottom: 3%;
        padding: 2%;
        border: none;
        background-color: var(--light);
    }
}

@media screen and (min-width:769px) and (max-width:900px) {}

@media screen and (min-width:901px) and (max-width:992px) {}

@media screen and (min-width:993px) and (max-width:1024px) {}

@media screen and (min-width:1025px) and (max-width:1140px) {}