* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'open sans', sans-serif;
}

body {
    height: 100vh;
    background-color: #002333;
}


.container {
    height: 100vh;
    margin: 0 auto;
    position: relative;
    background-color: #002333
}

.container .form-1 {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 40%;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3);
}

.form-1 h1 {
    text-align: center;
    margin-top: 0.7rem;
    margin-bottom: 1.5rem;
    font-family: 'Open Sans';
    font-size: 32px;
}

input[type="email"],
input[type="password"] {
    border: none;
    outline: none;
    border-bottom: 1px solid;
    background: none;
    margin: 0.9rem 2rem;
    font-size: 1rem;
}

label {
    margin: 0 2rem;
}

span {
    margin: 0 2rem;
    color: blue;
    cursor: pointer;
}

button {
    margin: 2rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 1rem;
    border: none;
    font-size: 1.1rem;
    font-weight: bolder;
    color: #fff;
    background-color: rgb(25, 153, 238);
}

/* ........///Sign-Up///......... */
p {
    text-align: center;
    font-weight: bolder;
}

.icons {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    margin-top: 0.5rem;
}

.icons a {
    text-decoration: none;
    font-size: 1rem;
    margin: 0.2rem;
}

.icons .fa-facebook-f {
    border-radius: 50%;
    background: #5d75ab;
    color: #fff;
    padding: 1rem;
}

.icons .fa-twitter {
    border-radius: 50%;
    background: #1da1f2;
    color: white;
    padding: 1rem;
}

.icons .fa-google {
    border-radius: 50%;
    background: #ee5645;
    color: #fff;
    padding: 1rem;
}

.signup-button {
    color: rgb(156, 154, 154)
}

/* ....///responsive///..... */
@media (max-width: 501px) {
    html {
        font-size: 15px;
    }

    .container .form-1 {
        width: 300px;
    }
}

@media (min-width: 501px) and (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .container .form-1 {
        width: 450px;
    }
}

@media (min-width: 765px) and (max-width: 1200px) {
    html {
        font-size: 18px;
    }

    .container .form-1 {
        width: 540px;
        height: 550px;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .container {
        height: 100vmax;
    }
}

/* HEADER */

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 1rem;
}

a:hover {
    color: skyblue;
}



header {
    position: relative;
    padding: 0 2rem;
}

.navbar {
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(255, 255, 255);
}

.navbar .logo a {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar .links {
    display: flex;
    gap: 2rem;
}


.navbar .toggle-botton {
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.button {
    background-color: #5fafd49a;
    color: rgb(255, 255, 255);
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
}

.button:hover {
    scale: 1.05;
    color: rgb(255, 255, 255);
    background-color: skyblue;
}

.button:active {
    scale: 0.95;
}



/* responsive menu */
.dropdown-menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0;
    width: 300px;
    background: rgba(250, 250, 250, 0.9);
    border-radius: 10px;
    overflow: hidden;


}

.dropdown-menu.open {
    height: 240px;

}

.dropdown-menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;

}

.dropdown-menu .button {
    width: 100%;
    display: flex;
    justify-content: center;

}


/* RESPONSIVE DESGIN */
@media (max-width:600px) {

    .navbar .links,
    .navbar .button {
        display: none;
    }

    .navbar .toggle-botton {
        display: block;
    }

    .dropdown-menu {
        display: block;

    }
}

@media (max-width:500px) {
    .dropdown-menu {
        left: 2rem;
        width: unset;
    }
}


/* Footer */
footer {
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    background-color: #002333;
    padding: 60px 10%;
    border-top: 1px solid;
    margin: 0.9rem 2rem;
    color: #ffffff;
}

ul {
    list-style: none;
}

.footer-col {
    width: 25%;
}

.footer-col h4 {
    position: relative;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 22px;
    color: #ffffff;
    text-transform: capitalize;
}

ul .kok:not(:last-child) {
    margin-bottom: 8px;
}

ul .kok a {
    display: block;
    font-size: 19px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    transition: 0.4s;
}

ul .kok a:hover {
    color: white;
    padding-left: 2px;
}

.links2 a {
    display: inline-block;
    height: 44px;
    width: 44px;
    color: rgb(0, 0, 0);
    background-color: rgba(255, 255, 255, 0.8);
    margin: 0 8px 8px 0;
    text-align: center;
    line-height: 44px;
    border-radius: 50%;
    transition: 0.4s;
}

.links2 a:hover {
    color: #0443ff;
    background-color: white;
}

@media(max-width: 740px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
        text-align: center;
    }
}

@media(max-width: 555px) {
    .footer-col {
        width: 100%;
    }
}