@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500&display=swap');

* {
    box-sizing: border-box;
}
body {
    margin: 0%;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    background: radial-gradient(circle,  rgb(247, 247, 247) 30%, rgb(224, 224, 224));
    color: #ffffff;
    overflow: hidden;
}

label {
    color: #01633c;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
    text-shadow: 2px 2px 4px #000000;
}

#wrapper {
    display: flex;
    flex-direction: row;
}

#left {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#right {
    flex: 1;
}

#inscreva {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    padding-bottom: 16px;
}

#inscreva form {
    width: 80%;
    padding-bottom: 48px;
}

#inscreva .logo {
    margin-bottom: 8vh;
}

#inscreva .logo img {
    width: 300px;
}

#inscreva label {
    font-size: 16px;
    line-height: 32px;
    font-weight: 500;
}

#inscreva .text-input {
    font-family: 'Raleway', sans-serif;
    margin-bottom: 21px;
    width: 100%;
    border-radius: 2px;
    background: #ffffff;
    border: 1px solid #01633c;
    color: #01633c;
    padding: 5px 10px;
    line-height: 21px;
    font-size: 15px;
}

#inscreva .btn-login {
    width: 100%;
}

#inscreva .btn-secundario,
.or,
.links {
    width: 60%;
}

#inscreva .links a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 16px;
    text-align: center;
    font-size: 15px;
}

#inscreva .or {
    display: flex;
    flex-direction: row;
    margin-bottom: 21px;
    align-items: center;
}

#inscreva .or .bar {
    flex: auto;
    border: none;
    height: 1px;
    background: #ffffff;
}

#inscreva .or span {
    color: #ffffff;
    padding: 0 13px;
}

#showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../img/soares.jpg') no-repeat center center / cover;
    height: 100vh;
    text-align: center;
}

#showcase .showcase-text {
    font-size: 3rem;
    width: 100%;
    color: #ffffff;
    margin-bottom: 24px;
}

.btn-login {
    padding: 10px 28px;
    height: 43px;
    display: block;
    border: 0;
    border-radius: 2px;
    font-weight: 500;
    background: #01633c;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
}

.btn-login:hover {
    background: #007e4b;
}

.btn-secundario {
    padding: 11px 16px;
    height: 43px;
    display: block;
    border: 1px solid #ffffff;
    border-radius: 2px;
    font-weight: 500;
    background: none;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s;
}

.btn-secundario:hover {
    border-color: #19586f;
    background-color: #ffffff;
    color: #19586f;
}

.responsive-img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

@media(min-width: 1200px) {
    #left {
        flex: 4;
    }
    
    #right
    {
        flex: 6;
    }
}

@media(max-width: 768px) {
    body {
        overflow: auto;
    }

    #right {
        display: none;
    }

    #left {
        justify-content: start;
        margin-top: 4vh;
    }

    #inscreva .logo {
        margin-bottom: 2vh;
    }

    #inscreva .text-input {
        margin-bottom: 0.7rem;
    }

    #main-footer {
        padding-top: 1rem;
    }
}

.custom-select {
    position: relative;
    font-family: "Century Gothic";
  }
  
  .custom-select select {
    display: none; /*hide original SELECT element: */
    margin-bottom: 1.3rem;
    width: 100%;
    border-radius: 2px;
    background: #ffffff;
    border: 1px solid #01633c;
    color: #01633c;
    padding: 0.5rem 1rem;
    line-height: 1.3rem;
  }
  
  .select-selected {
    margin-bottom: 1.3rem;
    width: 100%;
    border-radius: 2px;
    background: #ffffff;
    border: 1px solid #01633c;
    color: #01633c;
    padding: 0.5rem 1rem;
    line-height: 1.3rem;
  }
  
  /* Style the arrow inside the select element: */
  .select-selected:after {
    
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #01633c transparent transparent transparent;
  }
  
  /* Point the arrow upwards when the select box is open (active): */
  .select-selected.select-arrow-active:after {
    border-color: transparent transparent #01633c transparent;
    top: 7px;
  }
  
  /* style the items (options), including the selected item: */
  .select-items div,.select-selected {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #01633c;
    border-left: 1px solid #01633c;
    border-right: 1px solid #01633c;
    color: #01633c;
    padding: 0.5rem 1rem;
    line-height: 1.3rem;
    cursor: pointer;
  }
  
  /* Style items (options): */
  .select-items {
    position: absolute;
    background-color: #fff;
    
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
  }
  
  /* Hide the items when the select box is closed: */
  .select-hide {
    display: none;
  }
  
  .select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
  }