@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700&display=swap');

body {
    background-color: #0262a5;
    background-image: linear-gradient(315deg, #e20045 0%, #da78a0 74%);    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Mulish', sans-serif;
}

.subscribe {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #d9d7d7;
    width: 59rem;
    height: 29rem;
    border-radius: 10px;
    padding: 1rem;
}


.subscribe__title {
    font-weight: bold;
    font-size: 26px;
    margin-bottom: 0;
    margin-top: 2rem;
}

.subscribe__copy {
    font-size: x-large;
    font-weight: 500;
    max-width: 28rem;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.5;
}

.subscribe__title > span, .subscribe__copy > span {
    color: #00C7D6;
    font-weight: 900;
}

.form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.form__field {
    margin-bottom: 1.25rem;
    padding: 1.25rem 1.5rem;
    border-radius: 5px;
    border: 1px solid #00C7D6;
    width: 27rem;
    font-size: 18px;
    color: #0F121F;
}

.form__field:focus {
    outline: 1px solid #00C7D6;
}

.form__button {
    background: #00C7D6;
    padding: 10px;
    border: none;
    width: 15rem;
    height: 4rem;
    border-radius: 5px;
    font-size: 18px;
    color: white;
    box-shadow: 0 4px 20px rgba(61, 159, 255, 0.7);
}


.success__form__button {
    font-weight: 900;
}

.success__form__button:hover {
    box-shadow: 0 10px 20px rgba(61, 159, 255, 0.7);
}

.form__button {
    font-weight: 900;
}

.form__button:hover {
    box-shadow: 0 10px 20px rgba(10, 82, 152, 0.7);
}

.notice {
    width: 21rem;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #d9d7d7;
    width: 59rem;
    height: 29rem;
    border-radius: 10px;
}


.success__title {
    font-weight: bold;
    font-size: 26px;
    margin-bottom: 0;
    margin-top: 2rem;
}

.success__subtitle {
    max-width: 40rem;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.success__copy {
    font-size: x-large;
    font-weight: bold;
    max-width: 40rem;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.success__title > span, .subscribe__copy > span {
    color: #00C7D6;
    font-weight: 900;
}

.success__form__button {
    background: #00C7D6;
    padding: 10px;
    border: none;
    width: 15rem;
    height: 4rem;
    border-radius: 5px;
    font-size: 18px;
    color: white;
    box-shadow: 0 4px 20px rgba(61, 159, 255, 0.7);
}

.success__form__button:hover {
    box-shadow: 0 10px 20px rgba(10, 82, 152, 0.7);
}