#find_info {
    max-width: 600px;
    margin: 100px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.new_win_con {
    margin-bottom: 30px;
}

.new_win_con h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

#info_fs {
    border: none;
    padding: 0;
    margin-bottom: 25px;
}

#info_fs p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.frm_input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.frm_input:focus {
    border-color: #4a90e2;
    outline: none;
}

.win_btn {
    text-align: center;
    margin-top: 30px;
}

.btn_submit {
    background: #4a90e2;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn_submit:hover {
    background: #357abd;
}

.find_btn {
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.cert_btn {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.cert_btn .btn_submit {
    background: #fff;
    color: #4a90e2;
    border: 1px solid #4a90e2;
    min-width: 150px;
}

.cert_btn .btn_submit:hover {
    background: #f5f9ff;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    #find_info {
        padding: 20px;
    }
    
    .new_win_con h3 {
        font-size: 20px;
    }
    
    .cert_btn {
        flex-direction: column;
    }
    
    .cert_btn .btn_submit {
        width: 100%;
    }
} 