 /* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
	.row{
		width: 100%;
	}

    #auth_row{
        width: 100%;
    }
}

#auth_row{
    width: 100%;
}


.form-control{
	border-radius: 20px;
}

#auth_btn{
    border-radius: 18px;
    background-color:#ffd700;
    font-size: 18px;
    font-weight: 1000;
}

#auth_login{
    border-radius: 5%;
    background-color:#172149;
    color: #fff;
    font-size: 18px;
    font-weight: 1000;
}

/* Small devices (portrait tablets and large phones, 600px and up)*/
@media only screen and (min-width: 600px) {
    #auth_row{
        width: 40%;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    #auth_row{
        width: 40%;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    #auth_row{
        width: 40%;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    #auth_row{
        width: 40%;
    }
}

