/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #EAF6FF;
    min-height: 100vh;
    position: relative;
}

/* Page Container */
.page-container {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 100px 0;
}

/* Logo */
.logo-container {
    position: absolute;
    top: 27px;
    left: 35px;
    z-index: 10;
}

.company-logo {
    height: 39.545px;
    width: 163px;
    object-fit: contain;
}

/* Main Content Card */
.content-card {
    background: white;
    border-radius: 40px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 970px;
    margin: auto;
}

/* Reset Section */
.reset-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 19px;
    width: 100%;
}

.section-spacing {
    padding-top: 51px;
}

/* Title Section */
.title-section {
    display: flex;
    flex-direction: column;
    gap: 29px;
    width: 772px;
}

.section-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    text-align: center;
    margin: 0;
}

.section-description {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #000000;
    margin: 0;
}

/* Form Elements */
.form-group-custom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 12px 0;
}

.form-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin: 0;
}

.input-field {
    width: 451px;
    padding: 12px;
    border: 1px solid #4285F4;
    border-radius: 9px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: grey;
    background: white;
}

.input-field:focus {
    border-color: #4285F4;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(66, 133, 244, 0.25);
}

.input-field::placeholder {
    color: grey;
    font-weight: 300;
}

/* Name Fields */
.name-fields {
    display: flex;
    gap: 19px;
    align-items: center;
}

.name-input {
    width: 215px;
}

/* Reset Button */
.reset-btn {
    width: 301px;
    height: 54px;
    background-color: #2A8AFF;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 19px 0px rgba(119, 147, 65, 0.3);
    font-family: 'Poppins', 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    transition: background-color 0.3s ease;
}

.reset-btn:hover {
    background-color: #1c7ae6;
}

.reset-btn:focus {
    background-color: #2A8AFF;
    box-shadow: 0px 4px 19px 0px rgba(119, 147, 65, 0.3);
}

.arrow-icon {
    position: absolute;
    right: 14.97px;
    width: 24.027px;
    height: 36px;
}

/* Annotation Section */
.annotation-section {
    display: flex;
    flex-direction: column;
    gap: 19px;
    width: 100%;
    margin-top: 19px;
}

.annotation-item {
    display: flex;
    align-items: center;
    gap: 0;
}

.checkbox-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.annotation-text {
    font-family: 'Poppins', 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #000000;
    margin: 0;
    flex: 1;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .content-card {}
}

@media (max-width: 1100px) {
    .content-card {
        width: 90%;
        padding: 30px;
    }

    .reset-section {
        width: 100%;
    }

    .title-section {
        width: 100%;
    }

    .input-field {
        width: 100%;
        max-width: 451px;
    }

    .name-fields {
        flex-wrap: wrap;
        width: 100%;
    }

    .name-input {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .logo-container {
        left: 20px;
        top: 20px;
    }

    .company-logo {
        height: 30px;
        width: auto;
    }

    .content-card {
        top: 80px;
        padding: 20px;
    }

    .section-title {
        font-size: 18px;
    }

    .section-description {
        font-size: 16px;
    }

    .reset-btn {
        width: 100%;
        max-width: 301px;
    }
}

.liststylenon li{
	list-style: none !important;
}
