@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Body and some general stuff
2. Login Box

******************************/

/*********************************
1. Body and some general stuff
*********************************/

body {
    margin-left: 0px;
    margin-top: 0px;
    background-image: url(../../img/login/bg.jpg);
}

input {
    background: transparent;
    border: none;
    color: #1f4060;
    font-size: 15px;
    width: 200px;
    outline-width: 0;
}
input:focus {
    outline: none;
}

h1 {
    color: #1f4060;
    position: relative;
    left: 30px;
}

/*********************************
2. Login Box
*********************************/

#login-box {
    position: relative;
    top: calc(100vh / 2);
    height: 500px;
    width: 90%;
    max-width: 950px;
    min-width: 350px;
    margin-top: -250px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-shadow: 0px 0px 114px 2px rgba(0, 0, 0, 0.95);
    box-shadow: 0px 0px 114px 2px rgba(0, 0, 0, 0.95);
    overflow: hidden;
}

#login-box-login {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.95);
    top: 0px;
    width: 350px;
    height: 500px;
}
  
#logo {
    position: absolute;
    text-align: right;
    right: 20px;
    top: 20px;
}

#username-logo {
    position: absolute;
    top: 160px;
    left: 50px;
}

#username-box {
    width: 200px;
    height: 35px;
    position: absolute;
    left: 50%;
    margin-left: -80px;
    top: 160px;
    color: #1f4060;
    border-bottom: 2px solid #1f4060;
}

#password-logo {
    position: absolute;
    top: 250px;
    left: 50px;
}

#password-box {
    width: 200px;
    height: 35px;
    position: absolute;
    left: 50%;
    margin-left: -80px;
    top: 250px;
    color: #1f4060;
    border-bottom: 2px solid #1f4060;
}

#img {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

#username, #pw {
    position: absolute;
    left: 5px;
    top: 5px;
    font-size: 20px;
}

#username-placeholder, #password-placeholder {
    position: absolute;
    left: 5px;
    top: 5px;
    font-size: 20px;
}

#login-btn {
    position: absolute;
    left: 50%;
    margin-left: -60px;
    top: 360px;
    border: 2px solid #001a33;
    width: 120px;
    height: 40px;
    color: #001a33;
    font-size: 20px;
    cursor: pointer;
    border-radius: 30px;
}
#login-btn:hover {
    background-color: #001a33;
    color: white;
}

#msg-div {
    position: absolute;
    left: 50%;
    margin-left: -80px;
    top: 290px;
    color: red;
    text-align: justify;
    width: 200px;
    font-size: 12px;
    max-height: 60px;
    overflow: auto;
}