@import url('https://cdn.jsdelivr.net/gh/moonspam/NanumSquare@2.0/nanumsquare.css');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
@import url('https://cdn.jsdelivr.net/gh/sun-typeface/SUITE@2/fonts/static/woff2/SUITE.css');

body, html { 
    height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #f0f2f5;
    font-family: 'SUITE', sans-serif;
}

.login-wrapper {
	background-color: #ffffff;
	padding: 40px;
	width: 100%;
	max-width: 400px;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.brand-logo img {
	width: 180px;
	margin-bottom: 10px;
}

h2 {
	font-size: 24px;
	margin-bottom: 10px;
	color: #333;
}

p {
	font-size: 14px;
	color: #666;
	margin-bottom: 30px;
}

.form-group {
	margin-bottom: 20px;
	text-align: left;
}

.form-group label {
	font-size: 14px;
	color: #333;
}

.form-control {
	width: 100%;
	padding: 12px;
	font-size: 14px;
	margin-top: 8px;
	border: 1px solid #ccc;
	border-radius: 5px;
	transition: all 0.3s;
}

.form-control:focus {
	border-color: #007bff;
	outline: none;
}

.btn-login {
	width: 100%;
	padding: 12px;
	background-color: #007bff;
	color: #fff;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.btn-login:hover {
	background-color: #0056b3;
}

.btn-conv1 {
	margin-top:20px;
	padding: 10px 0 20px 0;
	color: #888;
	border: 1px solid #ddd;
	border-radius: 5px;
}
.btn-conv2 {
	display:flex;
	margin-top:10px;
	text-align:center;
	justify-content: space-around;
}

.btn-conv-login {
	background-color: #FFFFFF;
	border: none;
}

.btn-conv-login img {
	width:60px;
	cursor: pointer;
}

.footer-text {
	font-size: 12px;
	color: #888;
	margin-top: 30px;
}

.footer-text a {
	color: #007bff;
	text-decoration: none;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .sidebar {
        width: 200px;
    }
    .main-content {
        margin-left: 200px;
        width: calc(100% - 200px);
    }
}

@media (max-width: 500px) {
    .sidebar {
        display: none;
    }
    .main-content {
        margin-left: 0;
        width: 100%;
    }
}

.form-group {
	min-width:300px;
	max-width:300px;
}