* {
    padding:0;
    margin: 0;
    box-sizing: border-box;
}
img {
    max-width: 100%;
    vertical-align: middle;
}
body {
    background-color: #000000;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    line-height: 1.25;
    overflow-x: hidden;
}
.maintenance-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
    height: 100vh;
}
.maintenance-img {
    width: 40%;
}
.maintenance-content {
    width: 60%;
    text-align: center;
    padding: 10px;
}
h1 {
    font-size: clamp(34px, 3.25vw, 64px);
    font-weight: bold;
    margin-bottom: 60px;
}
h2 {
    font-size: clamp(22px, 2.25vw, 38px);
    font-weight: 500;
    margin-bottom: 30px;
}
h3 {
    font-size: clamp(20px, 1.8vw, 28px);
    font-weight: normal;
    margin-bottom: 10px;
}
form {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 60px auto;
}
input[type="email"] {
    padding: 16px 220px 16px 30px;
    line-height: normal;
    border: 3px solid #818286;
    border-radius: 50px;
    width: 100%;
    font-size: clamp(16px, 1.5vw, 24px);
    background: #000000;
    color: #FFFFFF;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    transition: all 0.5s ease-in-out 0s;
}
input[type="email"]:focus {
    border-color: #FFFFFF;
    outline: none;
}
input[type="email"]:focus::placeholder {
    color: #FFFFFF;
}
input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    padding: 12px 45px;
    background: #818286;
    border: 0;
    border-radius: 50px;
    font-size: clamp(16px, 1.5vw, 24px);
    font-weight: 600;
    color: #000000;
    height: 100%;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: all 0.5s ease-in-out 0s;
}
input[type="submit"]:hover {
    background-color: #FFFFFF;
}
.social-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.social-icons > a {
    display: inline-block;
    transition: all 0.3s ease-in-out 0s;
}
.social-icons > a:hover {
    opacity: 0.8;
}

/* Responsive */
@media screen and (max-width: 1199px) {
    h1 {
        margin-bottom: 30px;
    }
    form {
        margin-bottom: 30px;
    }
    input[type="email"] {
        padding: 13px 140px 13px 12px;
    }
    input[type="submit"] {
        padding-left: 20px;
        padding-right: 20px;
    }
    .social-icons {
        gap: 8px;
    }
    .social-icons > a > img {
        width: 26px;
        height: 26px;
    }
}
@media screen and (max-width: 1024px) {
    .maintenance-block {
        flex-flow: column;
        justify-content: center;
    }
    .maintenance-img {
        width: 75%;
        margin-bottom: 20px;
    }
    .maintenance-content {
        width: 100%;
        text-align: center;
        padding: 0;
    }
}