body {
    background-color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

* {
    box-sizing: border-box;
}

.validation-invalid-label, .validation-valid-label {
    margin-top:.5rem;
    margin-bottom:.5rem;
	display: block;
	color: #ef5350;
	position: relative;
	padding-left: 1.625rem
}
.validation-valid-label {
	color: #25b372
}

.login-page {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #f2f2f2; */
    background-color: #ffffff;
}

.login-box {
    width: 100%;
    max-width: 500px;
}

.card {
    border: 1px solid #dadce0;
    border-radius: 8px;
    box-shadow: none;
    background-color: #fff;
    padding: 40px 32px 24px 32px;
}

.login-logo {
    text-align: center;
    margin-bottom: 24px;
    font-size: 24px;
    color: #202124;
    font-weight: 500;
}

.login-card-body .login-box-msg {
    text-align: left;
    font-size: 15px;
    color: #8d8d8d;
    margin-bottom: 14px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input {
    border-radius: 4px;
    border: 1px solid #dadce0;
    padding: 14px;
    width: 100%;
    font-size: 15.5px;
}

.btn-primary {
    width: 100%;
    text-align: center;
    background-color: #8dc4cc !important;
    border: none;
    color: white;
    border-radius: 4px;
    font-weight: 500;
    font-size: 15.5px !important;
    padding: 10px;
    margin-top: 16px;
}

.btn-primary:hover {
    background-color: rgb(5, 118, 138) !important;
}

.link_wrap a {
    font-size: 13.6px;
    color: #8dc4cc;
    text-decoration: none;
    margin: 8px;
}

.link_wrap a:hover {
    color: rgb(5, 118, 138)
}

.link_wrap {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.login-logo img {
    display: block;
    margin: 0 auto;
}

.divider {
    margin: 0 8px;
    color: #ccc;
    font-weight: 300;
    position: relative;
    top: 7px;
}

.login-box-msg {
    text-align: center;
    font-size: 14px;
    color: #130c0c;
    background-color: #f9f9f9;
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
}

.login-box-msg.error {
    color: #d93025;
    background-color: #fff0f0;
    border: 1px solid #f5c6cb;
}

.login-box-msg.success {
    color: #0f5132;
    background-color: #d1e7dd;
    border: 1px solid #badbcc;
}

.flex-third{
    flex: 1;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    display: flex;     
    padding: 6.5px 15px;             /* 안쪽 여백 */
    margin-top: 15px;               /* 위쪽 간격 */
}
