* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    /*background-color: #5c1616;*/
    /*background-image:url('../images/sun_clg.jpg');*/
    background-size: cover;
    background-repeat: no-repeat;
    background-image:
        linear-gradient(45deg,
            rgba(245, 70, 66, 0.75),
            rgba(8, 83, 156, 0.75)), url('../images/sunlogin.jpg');
    height: 660px;
    overflow: hidden;
    background-position: bottom;
}

.maincontainer {
    width: 26%;
    height: 500px;
    background: white;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 2px 4px #5c1616;
    border: 1px double #5c1616;
    margin: auto;
    top: 70px;
    position: relative;
}

.input {
    width: 100%;
    height: 35px;
    background: #ffffff;
    display: flex;
    margin: 5px 0px 20px 0px;
    padding: 10px;
    border: 1px solid #5c1616;
    outline: none;
    border-radius: 5px;

}

.input::placeholder {
    color: #5c1616;
    font-family: calibri;

}

.subcontainer {
    width: 60%;
    margin: 30px auto;
}

.button {
    /* width: 20%; */
    /* height: 40px; */
    padding: 7px 17px;
    margin: 10px auto;
    font-family: calibri;
    display: block;
    color: #fff;
    background: #5c1616;
    font-size: 0.9em;
    font-weight: 500;
    margin-top: 10px;
    outline: none;
    border: none;
    border-radius: 5px;
    transition: .2s ease-in;
    cursor: pointer;
}

.image {

    width: 50%;
    height: 10%;
    margin: 10px 0 0 0;

}

.img-div {

    justify-content: center;
    display: flex;
    margin: 5px;
}

.label {
    font-weight: bold;
    color: #5c1616;
    font-family: calibri;
}



@media only screen and (max-width: 768px) {
    .maincontainer {
        width: 85%;
        height: 510px;
        background: white;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0px 2px 7px #5c5050;
        margin: 15px 0 0 25px;
    }

    .button {
        padding: 7px 17px;
        margin: 10px auto;
        font-family: calibri;
        display: block;
        color: #fff;
        background: #5c1616;
        font-size: 0.9em;
        font-weight: 500;
        margin-top: 10px;
        outline: none;
        border: none;
        border-radius: 5px;
        transition: .2s ease-in;
        cursor: pointer;
    }
}