@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    min-height: auto;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


.menu {
    background: #18477b;
    min-height: 4vh;
}

.menu ul {
    display: inline-flex;
    margin: 20px;
}

.menu ul a {
    text-decoration: none;
}


.menu ul li {
    list-style: none;
    margin: 20px 25px 0px 0px;
    color: #b2b1b1;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
}

.logo img {
    margin-top: -13px;
    margin-right: 48px;
}

.active {
    color: #19dafa !important;
}

.app-menu,
.contact-menu {
    color: #19dafa;
}

.form-data {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 20px;
    margin-bottom: 20px;
}

.form-data form {
    background: whitesmoke;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-data .container h1 {
    color: #024770;
    font-weight: 800;
    font-family: Montserrat;
}

.form-data .container p {
    color: #024770;
    font-weight: 300;
    font-family: Montserrat;
}

.modules {
    width: 100%;
    color: #024770;
    font-weight: 800;
    font-family: Montserrat;
}

.form-data .container label, input {
    color: #024770;
}

.signup-btn {
    top: 20px;
    right: 80px;
    position: absolute;
    text-decoration: none;
    color: #fff;
    border: 2px solid transparent;
    border-radius: 20px;
    background-image: linear-gradient(#42455a),
        radial-gradient(cirle at top left, #fd00da, #19d7f8);
    background-origin: border-box;
    background-clip: content-box, border-box;

}

/* Full-width input fields */
input[type=text],
input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    display: inline-block;
    border: none;
    background: #f1f1f1;
}

input[type=text]:focus,
input[type=password]:focus {
    background-color: #ddd;
    outline: none;
}

hr {
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;
}

/* Set a style for all buttons */
button {
    background-color: #024770;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}

button:hover {
    opacity: 1;
}


/* Float signup button and add an equal width */
.signupbtn {
    /* float: left; */
    width: 50%;
}

/* Add padding to container elements */
.container {
    padding: 16px;

}

.container h1 {
    text-align: center;
}

.container .modules {
    display: flex;
    justify-content: center;
    align-items: center;
}


.clearfix .signupbtn {
    width: 100%;
    font-weight: 800;
    font-family: Montserrat;
}

/* Clear floats */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}


footer {
    position: absolute;
    width: 100%;
    background: #ffffff;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    min-height: 5vh;
    bottom: 0;
}

footer .social_icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
    margin-top: 10px;
}

footer .social_icon li {
    list-style: none;
}

footer .social_icon li a {
    font-size: 2em;
    color: #024770;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}

footer .social_icon li a:hover {
    transform: translateY(-10px);
}

footer p {
    color: #024770;
    text-align: center;
    margin-top: 1.5px;
    margin-bottom: 3.5px;
    font-size: 20px;
    font-weight: 900;
    font-family: Montserrat;
}

/* Change styles for cancel button and signup button on extra small screens */
@media screen and (max-width: 768px) {

    .cancelbtn,
    .signupbtn {
        width: 100%;
    }

    footer .social_icon {
        display: none;
    }
}   