@import url("https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900");
@font-face {
    font-family: 'SCoreDream';
    font-weight: 400;
    font-style: normal;
    src: url(https://cdn.jsdelivr.net/gh/webfontworld/SCoreDream/SCoreDream4.woff2) format('woff2'),
         url(https://cdn.jsdelivr.net/gh/webfontworld/SCoreDream/SCoreDream4.woff) format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'SCoreDream';
    font-weight: 700;
    font-style: normal;
    src: url(https://cdn.jsdelivr.net/gh/webfontworld/SCoreDream/SCoreDream7.woff2) format('woff2'),
         url(https://cdn.jsdelivr.net/gh/webfontworld/SCoreDream/SCoreDream7.woff) format('woff');
    font-display: swap;
}

*, body {
    font-family: "SCoreDream", sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.form-body {
    background-color: #0093FF;
    min-height: 100%;
}

.form-body > .row {
    position: relative;
    margin: 0;
    min-height: 100vh;
}

.img-holder {
    display: none;
}

.img-holder .bg {
    display: none;
}

.form-holder {
    margin-left: 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-holder .form-content {
    width: 100%;
    max-width: 400px;
    padding: 40px;
}

.form-content .form-items {
    background-color: #fff;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-content h3 {
    color: #333;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.form-content .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f8f9fa;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.form-content .form-control:focus {
    border-color: #0093FF;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 147, 255, 0.15);
    outline: none;
}

.form-content .form-control::placeholder {
    color: #999;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f8f9fa;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.captcha-img {
    height: 46px;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.captcha-img:hover {
    opacity: 0.8;
}

.refresh-btn {
    padding: 8px 12px;
    border-radius: 6px;
}

.form-button {
    margin-top: 25px;
}

.form-button .ibtn {
    width: 100%;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #0093FF 0%, #0077cc 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 147, 255, 0.3);
}

.form-button .ibtn:hover {
    background: linear-gradient(135deg, #0077cc 0%, #005fa3 100%);
    box-shadow: 0 6px 20px rgba(0, 147, 255, 0.4);
    transform: translateY(-1px);
}

.form-button .ibtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
}

.alert-danger {
    background-color: #fff5f5;
    border: 1px solid #fc8181;
    color: #c53030;
}

/* 반응형 */
@media (max-width: 992px) {
    .form-holder .form-content {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .form-content .form-items {
        padding: 30px 25px;
    }

    .form-content h3 {
        font-size: 20px;
    }
}

/* 애니메이션 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-items {
    animation: fadeIn 0.5s ease-out;
}
