* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'ansage-black';
    src: url('../fonts/Ansage-Black.otf');
}

@font-face {
    font-family: 'ansage-regular';
    src: url('../fonts/Ansage-Regular.otf');
}


body {
    font-family: 'ansage-regular';
}

main {
    width: 100%;
    height: auto;
}

.banner-section {
    width: 90%;
    height: auto;
    margin-left: 5%;
    margin-top: 2%;
}

.banner {
    width: 100%;
    height: auto;
}

.banner img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);

}

.form-column {
    display: flex;
    flex-direction: column;
}

.form-section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 5%;
}

.heading {
    display: flex;
    flex-direction: row;

    /* margin-top: 2%; */
}

.form-width {
    width: 90%;
    margin-left: 5%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 5px;

}

.right-logo {
    width: 150px;
    height: 150px;
    background: #323570;
    border-bottom-right-radius: 35px;
    border-top-left-radius: 5px;
    border-bottom: 5px solid orange;

}

.right-logo img {
    width: 100%;
    height: 100%;
}

.heading-ppa {
    width: 90%;
    background: #323570;
    height: 115px;
    text-align: center;
    border-bottom: 5px solid orange;
    border-top-right-radius: 5px;
}

.heading-ppa h2 {
    font-family: ansage-regular;
    font-size: 1.7rem;
    color: #fff;
    margin-top: 3%;
}

.form {
    height: auto;
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding-bottom: 5%;

}

.names,
.contact {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.form-content {
    width: 85%;
    margin-left: 7.5%;
    margin-top: 3%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.input-box {
    display: flex;
    flex-direction: column;
    gap: 2%;
}

.input-box label {
    font-family: ansage-regular;
    font-size: 0.9rem;
    color: #323570;
    text-transform: capitalize;
}

.input-box input, .input-box select {
    width: 300px;
    height: auto;
    border: none;
    border-bottom: 2px solid #000;
    outline: none;
    font-family: ansage-regular;
    font-size: 0.8rem;
    padding-left: 5px;
}

.tnc {
    margin-top: 1%;
    font-family: ansage-regular;
    font-size: 0.89rem;
}

.tnc label a {
    color: red;
    text-decoration: none;
}

.button-div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.button-div button {
    width: 150px;
    padding: 10px;
    background-color: #323570;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-family: ansage-regular;
    outline: none;
    transition: background-color 0.3s ease;
}

.button-div button:hover {
    background-color: transparent;
    border: 1.5px solid #323570;
    color: #323570;
}
@media(max-width:986px)
{
    .heading{
        display: flex;
        flex-direction: column;
        background: #323570;
        height: 170px;
        justify-content: center;
        text-align: center;
        align-items: center;
        border-radius: 5px;
    }
    .right-logo{
        background: none;
        border: none;
    }
    .right-logo img{
        width: 120px;
        height: auto;
        margin-top: 10%;
    }
    .heading-ppa{
        background: none;
        border: none;
    }
    .heading-ppa h2{
        font-size: 0.9rem;
    }
    .form{
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .names{
        flex-direction: column;
        gap: 3rem;
    }
    .input-box input{
        width: 100%;
    }
    .contact{
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
    .tnc{
        display: flex;
        flex-direction: row;
        gap: 1rem;
    }
    .tnc label{
        font-size: 0.7rem;
    }
}

.success-msg {
    position: fixed;
    /* stays on screen even when scrolling */
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 100%;
    background: rgba(0, 0, 0, 1);
    /* semi-transparent black */
    display: flex;
    justify-content: center;
    align-items: center;
    /* visibility: hidden; */
    /* opacity: 0; */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
    /* box-shadow: 0px 2p; */
    gap: 3rem;
}
.success{
    width: 80%;
    height: auto;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}
.logo-ti{
    width: 130px;
    height: 130px;
    background: #323570;
    display: flex;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    align-content: center;
    margin-left: 45%;
}
.logo-ti img{
    width: 100%;
    height: 100%;

}
.registration-msg{
    text-align: center;
    justify-content: center;
    font-family: ansage-regular;
}
.registration-msg h2{
    color: green;
    font-size: 1.5rem;
}
.registration-msg h3{
    color: #323570;
}
.close-btn{
    text-align: right;
}
.close-btn h2{
    font-size: 1.2rem;
    margin-right: 1%;
    cursor: pointer;
    color: red;
}

@media(max-width:986px)
{
    
    .logo-ti{
        margin-left: 25%;
    }
    .success-msg h2{
        font-size: 1.2rem;
    }
    .success-msg h3{
        font-size: 1rem;
    }
}
.pop-up{
    display: none;
}