@charset "utf-8";
/* CSS Document */

/* Start of Desktop styling */
@media screen and (min-width: 1024px){
 
    body{
        background-color: rgba(34,38,78,1.0);
        margin:0vw;
        padding:0vw;
    }
    
    #desktoponly{
        visibility: visible;
    }
    
    #mobileonly{
        visibility: hidden;
    }
    
    .topbar{
    width:100vw;
    height:0.5vw;
    position:fixed;
    top:0vw;
    margin-left: -100vw;
    background-color:rgba(245,200,66,1.0);
    display:block;
    opacity:0;
}

.btmbar{
    width:100vw;
    height:0.5vw;
    position:fixed;
    bottom:0vw;
    margin-left:100vw;
    background-color:rgba(245,200,66,1.0);
    display:block;
    opacity: 0;
}
    
    .loginbox{
        width:30vw;
        display:block;
        margin-top:10vw;
        margin-left:34vw;
        background-color: rgba(255,255,255,1.0);
        padding:1vw;
        border-color:rgba(23,207,221,1.0);
        border-style: solid;
        border-width: thin;
        text-align: center;
        opacity:0;
    }
    
    .loginbox h1{
        font-family: source-sans-pro, sans-serif;
        font-weight: 700;
        font-style: normal;
        color:rgba(34,38,78,1.0);
        display:block;
        text-align: center;
    }
    
    .loginbox img{
        width:10vw;
        height:auto;
        display:block;
        margin: 0 auto;
    }
    
    input[name="login_school"]{
        width:29vw;
        font-family: source-sans-pro, sans-serif;
        font-weight: 400;
        font-style: normal;
        padding:0.5vw;
        text-align:center;
        outline:none;
        border-style: solid;
        border-width: thin;
        border-color: rgba(206,206,206,1.0);
        margin:1vw 0vw 1vw 0vw;
    }
    
    input[type=email]{
        width:29vw;
        font-family: source-sans-pro, sans-serif;
        font-weight: 400;
        font-style: normal;
        padding:0.5vw;
        text-align:center;
        outline:none;
        border-style: solid;
        border-width: thin;
        border-color: rgba(206,206,206,1.0);
        margin:1vw 0vw 1vw 0vw;
    }
    
    input[type=email]:focus{
        border-color:rgba(23,207,221,1.0);
    }
    
    input[type=password]{
        width:29vw;
        font-family: source-sans-pro, sans-serif;
        font-weight: 400;
        font-style: normal;
        padding:0.5vw;
        text-align:center;
        outline:none;
        border-style: solid;
        border-width: thin;
        border-color: rgba(206,206,206,1.0);
        margin:1vw 0vw 1vw 0vw;
    }
    
    input[type=password]:focus{
        border-color:rgba(23,207,221,1.0);
    }
    
    input[type=submit]{
        width:30vw;
        font-family: source-sans-pro, sans-serif;
        font-weight: 700;
        font-style: normal;
        padding:0.5vw;
        text-align:center;
        outline:none;
        border-style: solid;
        border-width: thin;
        border-color: rgba(206,206,206,1.0);
        background-color: rgba(206,206,206,1.0);
        color:rgba(34,38,78,1.0);
        margin:1vw 0vw 1vw 0vw;
        cursor:pointer;
    }
    
    input[type=submit]:hover{
        border-color:rgba(255,85,39,1.0);
        background-color:rgba(255,85,39,1.0);
        color:rgba(255,255,255,1.0);
    }
    
}

/* Start of Mobile styling */
@media screen and (max-width: 1023px){
 
    body{
        background-color: rgba(34,38,78,1.0);
        margin:0vw;
        padding:0vw;
    }
    
    #desktoponly{
        visibility: hidden;
    }
    
    #mobileonly{
        visibility: visible;
    }
    
.topbar{
    width:100vw;
    height:5vw;
    position:fixed;
    top:0vw;
    margin-left: -100vw;
    background-color:rgba(245,200,66,1.0);
    display:block;
    opacity:0;
}

.btmbar{
    width:100vw;
    height:5vw;
    position:fixed;
    bottom:0vw;
    margin-left:100vw;
    background-color:rgba(245,200,66,1.0);
    display:block;
    opacity: 0;
}
    
    .loginbox{
        width:80vw;
        display:block;
        margin-top:10vw;
        margin-left:8vw;
        background-color: rgba(255,255,255,1.0);
        padding:1vw;
        border-color:rgba(23,207,221,1.0);
        border-style: solid;
        border-width: thin;
    }
    
    .loginbox img{
        width:40vw;
        height:auto;
        margin: 5vw 20vw
    }
    
    .loginbox h1{
        font-family: source-sans-pro, sans-serif;
        font-weight: 700;
        font-style: normal;
        color:rgba(34,38,78,1.0);
        display:block;
        text-align: center;
        font-size:7vw;
    }
    
    input[type=email]{
        width:70vw;
        font-family: source-sans-pro, sans-serif;
        font-weight: 400;
        font-style: normal;
        padding:1vw;
        text-align:center;
        outline:none;
        border-style: solid;
        border-width: thin;
        border-color: rgba(206,206,206,1.0);
        margin:4vw;
        font-size:6vw;
    }
    
    input[type=email]:focus{
        border-color:rgba(23,207,221,1.0);
    }
    
    input[type=password]{
        width:70vw;
        font-family: source-sans-pro, sans-serif;
        font-weight: 400;
        font-style: normal;
        padding:1vw;
        text-align:center;
        outline:none;
        border-style: solid;
        border-width: thin;
        border-color: rgba(206,206,206,1.0);
        margin:4vw;
        font-size:6vw;
    }
    
    input[type=password]:focus{
        border-color:rgba(23,207,221,1.0);
    }
    
    input[type=submit]{
        width:70vw;
        font-family: source-sans-pro, sans-serif;
        font-weight: 700;
        font-style: normal;
        padding:1vw;
        text-align:center;
        outline:none;
        border-style: solid;
        border-width: thin;
        border-color: rgba(206,206,206,1.0);
        background-color: rgba(206,206,206,1.0);
        color:rgba(34,38,78,1.0);
        margin:4vw;
        cursor:pointer;
        font-size:6vw;
    }
    
    input[type=submit]:hover{
        border-color:rgba(255,85,39,1.0);
        background-color:rgba(255,85,39,1.0);
        color:rgba(255,255,255,1.0);
    }
    
}