/* vote_m_login.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f2f6fc;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans KR', sans-serif;
}

.system-title-center {
    pointer-events: none;
}

.main-container {
    margin: auto;
    width: 800px;
    background: white;
    height: 100vh;
}

.login-container {
    width: 100%;
    max-width: 400px;
    background-color: white;
    padding: 35px 35px;
    border-radius: 0.9375rem;
}

.error-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.error-modal-overlay.show {
    display: flex !important;
}

.error-modal-box {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px 20px;
    max-width: 320px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.error-modal-box p {
    font-size: 17px;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.6;
}

.error-modal-icon {
    width: 48px;
    height: 48px;
    background: #fef2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.error-modal-btn {
    width: 100%;
    background: transparent;
    color: #dc2626;
    border: 1.5px solid #dc2626;
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Noto Sans KR', sans-serif;
    margin-top: 15px;
}

.error-modal-btn:hover {
    background: #fef2f2;
    color: #dc2626;
}

input.form-control {
    font-weight: 600;
    font-size: 17px;
    padding: .425rem .75rem;
}

.container.mt-5 {
    margin-top: 0 !important;
}

button.btn.btn-primary.w-100 {
    margin-top: 55px;
    font-size: 16px;
    font-weight: bold;
}

label {
    display: block;
    margin-bottom: 2px;
    font-size: 16px;
    color: #2c3e50;
}

.form-control:focus {
    box-shadow: none;
}

.text-center.mb-4 {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
}
 
.form-group.mb-3 {
    margin-bottom: 8px !important;
}

.login-icon-container {
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top: 85px;
    margin-bottom:85px;
    gap: 12px;
}

.login-text {
    font-size: 18px;
    font-weight: bold;
    color: #4267e8;
}