* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
}

.main-header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
    gap: 330px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
    background-color: rgb(255,255,255);
    margin-bottom: 240px;
}

.logo-and-title {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-and-title img {
    width: 55px;
}

.nama-sekolah h2{
    font-family: "Nunito Sans", sans-serif;
    font-weight: 800;
    font-size:18px;
    line-height: 10px;
    padding-top: 4px;
}

.nama-sekolah p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 12px;
}


.menu-navbar ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu-navbar ul li{
    list-style-type: none;
}

.menu-navbar ul li a {
    text-decoration: none;
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
    color: black;
}

.menu-navbar ul li a:hover {
    color: blueviolet;
    transition: 0.3s;
}

/* SECTION FORM PENDAFTARAN */
.form-pendaftaran {
    background-color: rgb(246,246,246);
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-form-pendaftaran {
    width: 1104px;
    height: 497px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    margin-bottom: 80px;
    margin-top: 160px;
    border-radius: 12px;
}

.section-form-pendaftaran {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-form-pendaftaran img {
    width: 178px;
    height: 178px;
    margin-bottom: -16px;
}

.section-form-pendaftaran h1 {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    color: #504f4f;
}

.section-form-pendaftaran p {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #858383;
    text-align: center;
    margin-bottom: 32px;
}

.section-form-pendaftaran form {
    width: 455px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap:12px 32px;
}

.section-form-pendaftaran form input {
    max-width: 211px;
    height: 33px;
    width:211px ;
    height:33px ;
    padding-left:8px ;
    border: 1px solid rgb(183, 175, 175);
    border-radius: 4px;
}

.section-form-pendaftaran form button {
    width:120px ;
    height:28px ;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    background-color: #4262ff;
    border-radius: 24px;
    border: none;
}

.section-form-pendaftaran form button a {
    text-decoration: none;
    color: white;
}

.section-image-form-pendaftaran img {
    width: 496px;
    height: 360px;
}
/* SECTION FORM PENDAFTARAN */

/* FOOTER */
footer {
    background-color: #2091f9;
    padding: 16px 0;
}

.isi-footer {
    max-width: 956px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.logo-footer img {
    width: 57px;
}

.nama-sekolah-footer h1 {
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 16px;
}

.nama-sekolah-footer p {
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 11px;
}

.deskripsi-footer {
    max-width: 332px;
    margin-bottom: 18px;
}

.deskripsi-footer p {
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 18px;
}

.section-social-media-footer {
    display: flex;
    align-items: center;
    gap: 28px;
}

.social-media-footer {
    padding: 8px;
    background-color: #fdba09;
    border-radius: 100%;
}

.section-right-footer {
    max-width: 466px;
}

.header-right-footer {
    margin-top: 14px;
    margin-bottom: 36px;
}

.header-right-footer h2 {
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 16px;
}

.menu-footer {
    max-height: 60px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 24px 48px;
}

.menu-footer a {
    text-decoration: none;
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 13px;
}
/* FOOTER */