body {
    padding: 24px;
    color: #101828;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        Segoe UI,
        sans-serif;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Roboto, sans-serif;
    font-weight: bold;
}


fieldset input {
    width: 100%;
}

fieldset {
    width: 500pt;
}

.error {
    color: rgb(255, 0, 0);
    font-weight: bold;
}

.label,
.p {
    font-family: Montserrat;
    font-weight: 600;
}

/* Card */
.card {
    margin: auto;
    background: #ffffff;
    padding: 20px 22px 24px;
    border-radius: 8px;
}

/* Header */
.header {
    border-radius: 8px;
    padding: 16px;
    color: #475467;
    display: flex;
    background: #306cee1a;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

/* Section Title */
.section-title {
    font-size: 14px;
    color: #344054;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 16px 0 8px;
    line-height: 28px;
    font-weight: 700;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
}

/* Input Group */
.group {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 13px;
    font-weight: 500;
    color: #344054;
    margin-bottom: 6px;
    line-height: 20px;
}

label span {
    color: #f04438;
}

input {
    height: 40px;
    border-radius: 8px;
    padding: 0 12px;
    font-size: 14px;
    outline: none;
    transition: 0.15s;
    border: 1px solid #d0d5dd;
    width: 100%;
}

input:focus {
    border-color: #2f6aef;
    box-shadow: 0 0 0 3px rgba(47, 106, 239, 0.12);
}

.full {
    grid-column: 1/-1;
}

/* Notice */
.notice {
    margin-top: 16px;
    font-size: 13px;
    color: #475467;
    line-height: 1.5;
    font-weight: 500;
}

.notice>div {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #344054;
    font-size: 14px;
    line-height: 28px;
}

.notice>strong {
    color: #475467;
}

.notice a {
    color: #2f6aef;
    text-decoration: none;
}

/* Button */
input[type="submit"] {
    width: 100%;
    height: 44px;
    margin-top: 18px;
    background: #2f6aef;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

input[type="submit"]:hover {
    background: #1f5ad7;
}

/* Tablet & Mobile */
@media (max-width: 900px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 600px) {
    body {
        padding: 12px;
    }

    .card {
        padding: 16px;
    }

    .header {
        font-size: 13px;
    }

    input[type="submit"] {
        height: 42px;
    }
}

.input-wrap {
    position: relative;
    width: 100%;
}

.input-wrap input {
    padding-right: 36px;
}

.info-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 12px;
    opacity: 0.55;
}