/* Copyable CSS */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: 'Roboto', 'Montserrat', 'PlayFair-Display'
}

html,
body {
    margin: 0;
    padding: 0;
    overflow: auto;
    height: 100%;
    width: 100%;
}

:root {
    --mainBlue: rgb(0, 68, 124);
    --mainWhite: rgb(255, 255, 255);
    --silver: rgb(167, 169, 172);
    --yellow: rgb(255, 203, 5);
    --darkBlue: rgb(0, 44, 87);
    --brightBlue: rgb(24, 180, 233)
}

.navbar {
    background-color: var(--darkBlue) !important;
}

.bg-dark {
    background-color: var(--darkBlue) !important;
}

.navbar-toggler {
    background-color: var(--silver) !important;
}

.navList {
    display: flex;
    justify-content: space-around;
    margin: 0;
}

.navItem a {
    text-decoration: none;
    color: var(--mainWhite);
    font-size: larger;
    font-weight: bold;
}

.navItem a:hover {
    color: var(--silver);
}

/*Header Logo*/

#logoWrapper {
    background-color: var(--mainBlue); 
    padding:  0;
    text-align: center;
  }
  
  #header-logo {
    max-width: 300px;
    height: auto;
  }


/* Page Styles */
#wrapper {
    background-color: var(--mainBlue);
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    min-height: 90vh;
}

#login {
    background-color: var(--yellow);
    position: relative;
    width: 450px;
    height: 100%;
    border-radius: 15px;
    padding: 7.5em 2.5em 4em 2.5em;
    box-shadow: 0px 0px 10px 2px;
    align-content: center;
    margin-bottom: -15%;
}

.login-header {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    ;
    background-color: var(--brightBlue);
    width: 140px;
    height: 70px;
    border-radius: 0 0 20px 20px;
}

.login-header span {
    font-size: 30px;
    color: black
}

.login-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    width: 30px;
    height: 30px;
    border-top-right-radius: 50%;
    background: transparent;
    box-shadow: 15px 0 0 0 var(--brightBlue);
}

.login-header::after {
    content: "";
    position: absolute;
    top: 0;
    right: -30px;
    width: 30px;
    height: 30px;
    border-top-left-radius: 50%;
    background: transparent;
    box-shadow: -15px 0 0 0 var(--brightBlue);
}

.inputBox {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}

.inputField {
    width: 100%;
    height: 55px;
    font-size: 18px;
    background: transparent;
    color: var(--darkBlue);
    padding-inline: 20px 50px;
    border: 2px solid var(--mainWhite);
    border-radius: 30px;
    outline: none;
}

.label {
    position: absolute;
    top: 15px;
    left: 20px;
    transition: .2s;
}

.inputField:focus+.label,
.inputField:valid+.label {
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 14px;
    background-color: var(--mainWhite);
    padding: 0 10px;
    border-radius: 15px;
}

.loginSubmit {
    width: 100%;
    height: 50px;
    background: var(--brightBlue);
    font-weight: 500;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: .3s;
}

.loginSubmit:hover {
    background: var(--mainWhite);
}

.radioBox {
    border: 2px solid #00bfff;
    padding: 15px 10px;
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: center;
}

.radioBox p {
    margin-bottom: 10px;
    font-weight: bold;
}

.radioSelect {
    display: flex;
    justify-content: space-around;
    align-items: center;

}

.radioLabel {
    margin: 0 10px;
    font-weight: bold;
}

.radioInput{
    height: 20px;
    width: 20px;
}
.inputBox .dateLabel {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #000;
  }
  
  .inputDate {
    width: 100%;
    padding: 14px 16px;
    font-size: x-large;
    border: 2px solid var(--brightBlue);
    border-radius: 20px;
    background-color: var(--yellow);
    color: #333;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  
  .inputDate:focus {
    border-color: #00bfff;
    box-shadow: 0 0 5px #00bfff80;
  }
  
  /* Footer */

footer {
    background-color: var(--darkBlue);
    text-align: center;
    padding: 5px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: auto;
    font-weight: bold;
}

footer a {
    color: var(--mainWhite);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--silver);
}

/* Ticker box */


.tickerBox {
    background: var(--mainWhite);
    color: var(--darkBlue);
    border-radius: 15px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
    padding: 2em 1.5em;
    min-width: 220px;
    max-width: 300px;
    font-size: 1em;
    font-weight: 500;
    position: relative;
    bottom: 350px;
    left: 450px;
}

.tickerBox h3 {
    margin-top: 0;
    font-size: 1.2em;
    color: var(--brightBlue);
}

.tickerBox a {
    color: var(--brightBlue);
    text-decoration: underline;
} 


/* Media */
@media only screen and (max-width: 564px) {
    #wrapper {
        padding: 20px
    }

    .loginBox {
        padding: 7.5em 1.5em 4em 1.5em;
    }
}
