body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 0.5s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.unsub-section1 {
    display: flex;
    justify-content: center;
    background-color: white;
}
.unsub-section1-wrapper {
    max-width: 1224px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}
.unsub-section1-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    gap: 40px;
    border: none;
    border-radius: 20px;
    padding: 60px;
    box-shadow: #00000000 0px 0px 0px 0px, #00000000 0px 0px 0px 0px,
        #523f6926 0px 0px 50px 0px;
}
.unsub-section1-content h4 {
    margin: 0;
    color: #0d131a;
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
}
.unsub-section1-content form {
    display: flex;
    flex-direction: column;
}
.unsub-section1-content form label {
    color: #262626de;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin: 0px 0px 8px;
}
.unsub-section1-content form input,
.unsub-section1-content form select {
    font-size: 16px;
    background-color: #ffffff;
    border: 0.666667px solid #b8c0cc;
    border-radius: 8px;
    box-sizing: border-box;
    cursor: text;
    overflow: clip;
    padding: 10px;
    width: 100%;
    height: 42px;
    margin-bottom: 30px;
}

.unsub-section1-content form button {
    padding: 8px 16px;
    width: max-content;
    font-size: 16px;
    background-color: #176be0;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
.unsub-section1-content form button:hover {
    background-color: #000;
}
.unsub-section1-content form p {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    margin-top: 5px;
}
.unsub-section1-content form a {
    text-decoration: none;
}

@media screen and (max-width: 786px) {
    .unsub-section1-content {
        padding: 40px;
    }
}