@charset "UTF-8";

.login-wrap{
  	font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.logo-container{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	margin-bottom: 20px;
}

.logo-container > img{
	height: 30px;
	margin: auto;
}

.login-container {
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 5px;
    width: 300px;
}

.login-container-title{
	display: flex;
	justify-content: center;
}

.login-container-title > img{
	height: 100px;
	margin: auto;
}

.login-form-group {
    margin: 20px 0;
}

.login-form-group label {
    display: block;
}

.login-form-group input {
    width: 100%;
    height: 40px;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 14px;
}

.login-button {
	width: 100%;
    background: #454545;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 3px;
    font-size: 14px;
}
