/* style.css */
body {
    font-family: 'Noto Sans KR', sans-serif;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.custom-container {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 40px 30px;
    width: 100%;
    max-width: 420px;
}

h4 {
    font-weight: 700;
    margin-bottom: 30px;
    color: #2a2a2a;
}

.custom-btn {
    width: 100%;
    margin-top: 10px;
    border-radius: 10px;
    background-color: #1976d2 !important;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-icons img {
    width: 30px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.message {
    font-size: 18px;
    color: #555;
    text-align: center;
}

.info-box {
    background-color: black;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
