body {
    font-family: Arial, sans-serif;
    background-color: #FFF;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    
    margin: 0;
    font-size: 62.5%;
    font: 400 17px/1.4 "Cera PRO Regular",sans-serif;
    text-align: left;
}

.container-register {
    width: 100%;
    max-width: 60%;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 50px;
}
.container-login {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.form-group{
    display: flex;
    flex-wrap: wrap;
}
input {
    font: 200 13px/1.4 "Cera PRO Regular",sans-serif;
    font-size: 14px; /* Change to your desired font size */
    color: #000; /* Change to your desired color */
}
input::placeholder {
    font: 200 13px/1.4 "Cera PRO Regular",sans-serif;
    color: #888; /* Change to your desired color */
}
textarea::placeholder {
    font: 200 13px/1.4 "Cera PRO Regular",sans-serif;
    color: #888;
}
.login-box, .register-box {
    text-align: center;
}

h2 {
    margin-bottom: 20px;
}

.textbox-login {
    margin-bottom: 10px;
}
.textbox {
    margin-bottom: 10px;
    
}
.form-item{
    width: 50%;
}
.textbox input ,select , .textbox-login input, .textbox textarea {
    width: 86%;
    margin-top: 15px;    
	border: none;
	outline: none;
	border-bottom: .1em solid #14191b;
	background: rgba(#528596, .2);
	border-radius: .2em .2em 0 0;
	padding: .4em;
	color: #000;
}
textarea{
    padding: 10px;
}
.btn {
    margin-top: 30px;
    width: 96%;
    padding: 15px;
    background-color: #6b239b;
    border: none;
    color: #FFF;
    cursor: pointer;
}

.btn:hover {
    background-color: #f8431e;
}

p {
    margin-top: 5px;
}
.App-name {
    font-size: 24px;
}
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    position: relative;
    opacity: 1;
    transition: opacity 0.6s;
}
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert .close {
    position: absolute;
    top: 0;
    right: 10px;
    color: inherit;
    cursor: pointer;
}