@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&family=Roboto:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-text-color: #183b56;
    --secondary-text-color: #577592;
    --accent-color: #2294ed;
    --accent-color-dark: #1d69a3;
    --padding-inline-section: 20px;
}

body {
    background-color: #ffffffaa;
    /* font-size: 1rem; */
    font-family: 'Poppins', sans-serif;
    color: var(var(--primary-text-color));

}

h2 {
    font-size: 2rem;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
}

/* Header */

.topbanner {
    background-color: #4fb3d4;
    height: 50px;
    text-align: center;
    background-image: url(asset\ 18.png);
    /* align-content: center; */
    color: whitesmoke;
    /* display: flex; */

}

.topbanner img {
    height: 30px;
    margin-bottom: -5px;
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}

.flex {
    display: flex;
    gap: 50px;
    justify-content: space-around;
    align-items: center;
    margin-top: 7px;

}

.company-logo img {
    /* width: 50px; */
    height: 80px;
}


.nav-links {
    /* border:  2px solid black; */
    height: 100px;
    margin-top: 0px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;

}

.nav-links ul li {
    list-style: none;
    padding: 2px 5px;
    /* text-align: center; */
}

/* section */

.intro img {
    height: 450px;

}

.introtag {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 55px 95px;
    /* border: 2px solid red; */
    width: 45vw;
}

h1 {
    font-size: 2rem;
}

.introtag h3 {
    border: 2px solid black;
    margin-top: 49px;
}

.primary-button {
    width: 160px;
    margin: 10px 15px;
    flex-direction: row;
    background-color: var(--accent-color);
    border-radius: 6px;
    font-weight: 700;
    color: white !important;
    padding: 12px 24px;
    box-shadow: 0 0 2px var(--secondary-text-color);
    transition: 0.2 ease-out;
    display: block
}

.container {
    /* height: 100vw; */
    margin: 50px 0px;
}

.container p {
    /* border: 2px solid rgb(0, 0, 0); */
    /* margin: 50px; */
    font-size: 1.2rem;
    /* width: 512px; */
    color: var(--secondary-text-color);
}

/* Form Section */

.formcontainer {
    margin: 20px;
    display: flex;
    /* border: 2px solid black; */
    justify-content: space-around;
    /* box-shadow: 5px 5px 10px black; */
    align-items: center;
    /* height: 80vw; */
}

.servimg img {
    width: 500px;
    /* border: 2px solid black; */
    display: flex;
    align-self: center;

}

form {
    margin: 100px;
    font-size: 1.6rem;
    /* border: 2px solid #050505; */
    border-radius: 50px;
    padding: 30px 50px;
    width: 35%;
    box-shadow: 5px 5px 10px black;

}

form label {
    display: block;
    margin-top: 20px;
}

.flexend {
    display: flex;
    justify-self: flex-end;
}

input {
    padding: 6px 20px;
    margin: 9px 0px;
    border-radius: 13px;
    width: -webkit-fill-available;
}

.btn {
    padding: 5px 31px;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 12px;
    margin-top: 45px;
    /* margin-left: 151px; */
}


/* Retrived Password */

#uname,
#pwd {
    border: 2px solid black;
    height: 31px;
    text-align: center;
    border-radius: 13px;
    color: #577592;
    font-size: large;
}

#genpwwd {
    border: 2px solid black;
    height: 31px;
    border-radius: 13px;
}

#typeOfChar {
    border-radius: 13px;
    padding: 10px;
    /* display: block; */
    width: 100%;
}

/* Media Query */

@media(width <=1200px) {
    .formcontainer img {
        display: none;
    }

    .formcontainer {
        display: flex;
        justify-content: center;
    }

    .formbox {
        /* width: 40vw; */
        min-width: 500px;
    }

}