body {
    margin: 0px;
    padding: 0px;
    background-color: #f1eeeb; /*#4baa0a;*/
}
#box {
    height: 200px;
    width: 1000px;
    background-color: #242d26;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
#main{
    height: 600px;
    width: 450px;
    background-color:white;
    border-radius: 5px;
    position: absolute;
    top:50%;
    left: 70%;
    transform: translate(-50%,-50%);
    z-index: 99;
}
#loginform,#signupform{
    position: absolute;
    top:50%;
    left: 70%;
    transform: translate(-50%,-50%);
    z-index: 999;
}
#signupform{
    top:45%;
    left: 75%;
    visibility: hidden;
}
    #loginform h1, #signupform h1 {
        font-family: arial;
        font-size: 25px;
        color: #1bbd36;
    }
    #loginform input, #signupform input {
        height: 40px;
        width: 300px;
        border: 0px;
        outline: none;
        border-bottom: 1px solid #1bbd36;
        margin: 5px;
    }
::placeholder {
    color: #1bbd36 !important;
}

select {
    color: #1bbd36 !important;
    border-color: #1bbd36 !important;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #1bbd36 !important;
}

:-ms-input-placeholder { /* Microsoft Edge */
    color: #1bbd36 !important;
}
#loginform button, #signupform button {
    height: 35px;
    width: 130px;
    background-color: #1bbd36 !important;
    font-family: monospace;
    font-size: 16px;
    color: white;
    border: none;
    outline: none;
    border-radius: 5px;
    margin-top: 30px;
    margin-left: 175px;
}
#login_btn,#signup_btn{
    height: 35px;
    width: 120px;
    background-color:transparent;
    color:white;
    border:1px solid white;
    border-radius: 5px;
    outline: none;
    position: absolute;
    left: 75%;
    top:65%;
    transform: translate(-50%,-50%);
    transition: all .5s;
}
#login_submit, #register_submit {
    background-color: #1bbd36 !important;
    cursor: pointer;
}
#signup_btn{
    left: 25%;
}
    #login_btn:hover, #signup_btn:hover {
        background-color: white;
        color: #1bbd36;
        cursor: pointer;
    }
#login_msg,#signup_msg{
    font-family: arial;
    font-size: 25px;
    color:white;
    position: absolute;
    top:35%;
    left: 75%;
    transform: translate(-50%,-50%);
    z-index: 1;
}
#signup_msg{
    left: 25%;
}











