.page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    background-color: #f5f5f5;
    position: relative;
}

.image-container {
    width: 100%;
    height: 50vh;
    object-fit: cover;
}

.form-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    z-index: 1;
    position: relative;
    transform: translateY(-250px);
}

.form {
    font-family: 'Segoe UI', sans-serif;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.caption {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    font-size: 18px;
    font-weight: 600;
    padding: 16px;
    background-color: #16a085;
    color: white;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: relative;
}

.close-button {
    position: absolute;
    right: 10px;
    top: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 35px;
    /* 크기를 키움 */
    cursor: pointer;
    font-weight: bold;
}

.content {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
}

.input-box {
    display: flex;
    padding: 12px 16px;
    background-color: white;
    border: 1px solid rgba(80, 80, 80, 0.25);
    border-radius: 4px;
    margin-top: 16px;
}

.input {
    flex-grow: 1;
    background-color: transparent;
    font-size: 16px;
    border: none;
    outline: none;
    color: #333;
}

.option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.check-container {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.check-box {
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
}

.check-container1 {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.check-container1 a {
    font-size: 12px;
    color: #007bff;
    text-decoration: none;
}

.check-container1 a:hover {
    text-decoration: underline;
}

.login-button {
    padding: 12px 24px;
    background-color: #16a085;
    border: 1px solid #16a085;
    color: white;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    margin-top: 24px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.login-button:hover {
    background-color: #138d75;
    border-color: #138d75;
    box-shadow: 0px 8px 16px rgba(19, 141, 117, 0.5);
}

.login-button:active {
    background-color: #117a65;
    border-color: #117a65;
    box-shadow: initial;
}

.signup-link {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.signup-link a {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}