.find-id-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.find-id-container {
    width: 400px;
    padding: 40px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background-color: #fff;
    text-align: center;
}

.find-id-container h2 {
    margin-bottom: 30px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-with-button {
    display: flex;
    gap: 10px;
}

.input-with-button input {
    flex: 1;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.input-with-button button {
    padding: 10px 16px;
    background-color: #fdcf25;
    color: #5c4033;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

#findIdBtn {
    width: 100%;
    padding: 12px;
    background-color: #fdcf25;
    color: #5c4033;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

#findIdBtn:hover,
.input-with-button button:hover {
    background-color: #f4be00;
}

.error-message {
    margin-top: 5px;
    font-size: 13px;
    color: red;
}

@media screen and (max-width: 480px) {
    .find-id-container {
        width: 90%;
        padding: 25px 20px;
        border-radius: 8px;
        box-shadow: none;
    }

    .find-id-container h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .input-with-button {
        flex-direction: column;
        gap: 8px;
    }

    .input-with-button input,
    .input-with-button button {
        width: 100%;
        font-size: 14px;
        padding: 10px;
    }

    #findIdBtn {
        font-size: 15px;
        padding: 10px;
    }

    .error-message {
        font-size: 12px;
    }
}
