body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

.Main_Container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.home_page {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 700px;
}

.contact-info {
    text-align: center;
    margin-bottom: 20px;
}

.contact_number {
    font-size: 1em;
    color: #555;
}

#smarthub_avatar {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#smarthub_logo {
    width: 95%;
    max-width: 650px;
}

.Login_Container {
    width: 100%;
}

.FormLine {
    display: flex;
    flex-direction: row;
    margin-bottom: 15px;
    padding: 10px;
	border: 1px solid #1b3f5c;
	border-radius: 15px;
	background-color: white;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	width:80%;
	/* box-sizing: border-box; */
}

.FormLine input {
    /* border: 1px solid #1b3f5c; */
    padding: 10px;
    /* border-radius: 5px; */
    color: #707070;
    background-color: white;
    font-size: 1em;
    outline: none;
    width: 100%;
	border:none;
	/*margin-left:25%;*/
    /* box-sizing: border-box; */
}

.Field_Label {
    /* margin-bottom: 5px; */
    color: #707070;
    font-size: 1em;
	padding-top:2%;
}

.Button {
    width: 50%;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    background-color: #1b3f5c;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.2em;
}

.hidden {
    display: none;
}

.vcentring {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.error_notification {
    color: red;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

#BBB_Logo_login{
    height: 70px;
    position: absolute;
    bottom: 6%;
    right: 3%;
    /* margin-top: 1.5%;
    margin-left: 85%; */
}

.LoginButton{
	display: flex;
	justify-content: center;
}

@media (max-width: 600px) {
    .home_page {
        width: 95%;
        padding: 20px;
    }

    .FormLine {
        padding: 10px;
    }

    .Field_Label {
        font-size: 0.9em;
		padding-top:3%;
    }

    .Button {
        font-size: 1em;
    }
	
}
