* {
    box-sizing: border-box;
}

body {
    margin: 0;
    cursor: default;
    font-family: Poppins;
}

form {
    width: 350px;
}

.nav {
    display: flex;
    padding: 15px 20px;
    height:65px;
    background: linear-gradient(90deg, #672280 1.18%, #A626D3 100%);
    color: white;
    align-items: center;
}

.nav--title {
    font-size: 20px;
    margin-right: auto;
}

.nav--options--container {
    display: flex;
    flex-direction: row;
    color: white;
}

.dropdown {
    display: none;
}

.nav--option {
    font-size: 17px;
    padding: 20px 15px;
    cursor: pointer;
    transition-delay:0.1s;
    color: white;
}
.nav--option:hover {
    cursor: pointer;
    color: #ff512f;
}

.body--container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient( 109.6deg, rgba(156,252,248,1) 11.2%, rgba(110,123,251,1) 91.1% );
} 

.body--secondary--container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.body--button--file {
    position: absolute;
    top: 0;
    left: 0;
    height: 52px;
    width: 130px;
    z-index: -2;
    font-size: 17px;
    color: #b8b8b8;
}
  
.button-wrap {
    position: relative;
}

.body--button--label{
    display: inline-block;
    padding: 12px 18px;
    cursor: pointer;
    border: 2px solid black;
    border-radius: 5px;
    background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%);
    font-size: 16px;
    font-weight: bold;
    color: #fff;   
    transition-delay:0.1s;

    -ms-user-select:none;
    -moz-user-select:none;
    -webkit-user-select:none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    user-select:none;
}
.body--button--label:hover {
    background-image: linear-gradient(to right, #ff512f, #f09819);
}

@media only screen and (max-width: 600px) {
    .nav--option {
        display: none;
    }

    .dropdown {
        display: block;
        overflow: hidden;
    }

    .nav a {
        float: left;
        font-size: 16px;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

    .dropdown .dropbtn {
        font-size: 16px;  
        border: none;
        outline: none;
        color: white;
        padding: 14px 16px;
        background-color: inherit;
        font-family: inherit;
        margin: 0;
    } 

    .navbar a:hover, .dropdown:hover .dropbtn {
        color: #96e6a1;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        min-width: 114.762px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
    }

    .dropdown-content a {
        float: none;
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

    .dropdown-content a:hover {
        background-color: #ddd;
        color: #ff512f;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }
}



