.newlogin {
    /* Location of the image */
    background-image: url("../../images/LoginPage2.jpg");
    /* Background image is centered vertically and horizontally at all times */
    background-position: center center;
    /* Background image doesn't tile */
    background-repeat: no-repeat;
    /* Background image is fixed in the viewport so that it doesn't move when 
     the content's height is greater than the image's height */
    background-attachment: fixed;
    /* This is what makes the background image rescale based
     on the container's size */
    background-size: cover;
    /* Set a background color that will be displayed
     while the background image is loading */
    background-color: #464646;
}
.colorh {
    color: white;
}
.imglogo {
    height: 150px;
    width: 150px;
    /* margin-left: 50px;
    padding-right: 20px;
    float: left; */
}
.imglogo2 {
    height: 120px;
    width: 170px;
    margin-right: 50px;
    padding-right: 20px;
    float: right;
}
.margintop {
    margin-top: 50px;
}
.margintop2 {
    margin-top: 50px;
}
.botonLogin {
    width: 160px;
    height: 35px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    margin-bottom: 30px;
}