/* =================== 전체 기본 스타일 =================== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #f6f8fc, #e9f0f7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 20px;
    color: #333;
    text-align: center;
}

/* =================== 제목 스타일 =================== */
h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

/* =================== 상단 이미지 스타일 =================== */
.top-image1, .top-image2 {
    width: 80%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.top-image1:hover, .top-image2:hover {
    transform: scale(1.03);
}

/* =================== 로그아웃 메시지 =================== */
.logout {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 500px;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    animation: fadeIn 1s ease forwards;
}

/* 메시지 텍스트 */
.logout-masegi {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e3a8a;
}

.logout-masegi1,
.logout-masegi2,
.logout-masegi3 {
    font-size: 0.95rem;
    color: #555;
}

/* =================== 버튼 스타일 =================== */
.logout-out {
    margin-top: 20px;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #6a5af9, #3b82f6);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.logout-out:hover {
    background: linear-gradient(135deg, #3b82f6, #6a5af9);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* =================== 애니메이션 =================== */
@keyframes fadeIn {
    0% {opacity: 0; transform: translateY(20px);}
    100% {opacity: 1; transform: translateY(0);}
}

/* =================== 반응형 =================== */
@media screen and (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .top-image1, .top-image2 {
        width: 100%;
    }

    .logout {
        padding: 20px;
        border-radius: 15px;
    }

    .logout-out {
        width: 100%;
    }
}



