body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

.page-container {
    padding: 20px;
}

.home-container {
    background-color: #FDFDFD;
    padding: 50px;
    border-width: 1px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    vertical-align: top;
}

.home-img {
    width: 313px;
    height: 118px;
}

.home-title {
    margin-top: 5px;
    display: inline-block;
    font-family: Arial;
    font-size: 40px;
    font-weight: 400;
    color: #13817b;
    text-align: center;
}

.home-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-button {
    margin-bottom: 20px;
	margin-top: 15px;
	background-color: #13817b;
	border-style: none;
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
	border-bottom-left-radius: 2px;
	font-family: Arial;
	font-size: 20px;
	font-weight: 400;
	color: white;
	height: 55px;
	width: 240px;
	text-align: center;
	text-transform: uppercase;
	vertical-align: middle;
}

.home-button:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}

/*Reglas medias*/

@media screen and (max-width: 768px) {
    .home-container {
        width: 90%;
        padding: 5vw;
    }
}
