/* ! common css for all pages */

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
:root {
    --font-roboto: "Roboto Condensed", serif;
    --font-poppins: "Poppins", serif;
    --clear-chill: #1b9cfc;
    --keppel: #58b19f;
}

body {
    min-height: 100vh;
    position: relative;
}

.btn,
.btn-sm,
.btn-lg {
    box-shadow: none !important;
}

* {
    font-size: 18px;
    font-family: var(--font-poppins);
}

section {
    padding: 50px 0;
}


/* ! navbar section start */

.navbar-toggler {
    box-shadow: none !important;
}

.logo {
    font-size: 35px;
    font-weight: 700;
    background-image: -webkit-linear-gradient( 0deg, rgb(127, 13, 209) 10%, rgb(255, 43, 156) 90%);
    background-clip: text;
    color: transparent;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}


/* ! navbar section end */


/* !footer section start */

footer {
    background-color: #001f3f;
}


/* !footer section end */


/* register section start */

.register_form_section {
    min-height: 400px;
    width: 90%;
    max-width: 600px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    padding: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--clear-chill);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.301);
    display: none;
    background: #ffffff52;
    backdrop-filter: blur(20px);
    z-index: 99;
}

.login_form_section {
    min-height: 400px;
    width: 90%;
    max-width: 600px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    padding: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--clear-chill);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.301);
    background: #ffffff52;
    backdrop-filter: blur(20px);
    display: none;
    z-index: 99;
}

.register_form_section.active {
    display: flex;
}

.login_form_section.active {
    display: flex;
}

.form-title {
    font-size: 32px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    color: #182c61;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.164);
}

.register_form {
    width: 80%;
    margin: 0 auto;
}

.register_form input {
    width: 100%;
    margin: 10px auto;
    display: inline-block;
    border-radius: 25px;
    font-size: 18px;
    padding: 5px 15px;
    border: 2px solid #353535;
    transition: 0.3s ease-in-out;
    outline: none;
}

.register_form input:focus {
    border: 2px solid #58b19f;
}

.form-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

@media screen and (min-width: 992px) {
    .second_logout {
        display: none;
    }
}


/* register section end */


/* ! common css end */