﻿body {
    margin: 0;
    padding: 0;
    background-image: url('../Images/Envbranding_Sulpture.jpg');
    background-size: cover;
    
    font-family: sans-serif;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.loginbox {
    position: absolute;
    top:60%;
    left:85%;
    /*top: 50%;
    left: 50%;*/
    transform: translate(-50%,-50%);
    width: 350px;
    height: 470px;
    padding: 60px 40px;
    box-sizing: border-box;
    
    background: rgba(0,0,0,0.5);
}

.user {
    width: 100px;
    height: 100px;
    overflow: hidden;
    top: calc(-100px/2);
    left: calc(50% - 50px);
    position: absolute;
}

h2 {
    padding: 0;
    margin: 0;
    text-align: center;
    color: rgb(255, 164, 0);
    /*color:rgb(255, 217, 9);*/
}

.lbluser, .lblpass,.lblfyear {
    font-weight: bold;
    color: #fff;
}

.txtuserid, .txtpass, .btnsubmit {
    width: 100%;
    margin-bottom: 20px;
}

.txtuserid, .txtpass {
    border: none;
    border-bottom: 3px solid #fff;
    outline: none;
    height: 40px;
    color: #fff;
    font-size: 16px;
    background-color: transparent;
}

.ddlfyear {
     border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    height: 45px;
    color: #fff;
    font-size: 16px;
    background-color: grey;

    border: 2px solid #fff;
   border-radius: 5px;
}

::placeholder {
    color: rgba(255,255,255,.5);
}

.btnsubmit {
    border: none;
    outline: none;
    height: 40px;
    font-size: 16px;
    color: #fff;
    background-color: rgb(255,9,9);
    cursor: pointer;
    border-radius: 20px;
    transition: .3s ease-in-out;
}

    .btnsubmit:hover {
        /*background-color:rgb(255,217,9);*/
        background-color: rgb(255, 164, 0);
    }

.btnforget {
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
}

    .btnforget:hover {
        text-decoration: underline;
    }

.requiredfield {
    color: rgb(255, 164, 0);
    font-weight: bold;
}
