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

@font-face {
    font-family: 'Canela Web';
    src: url('./canelaweb-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

input,button {
    unset: all;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: #4A1B84;
    font-size: 14px;
    background: #8048FE;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    user-select: none;
}

.landing-page {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.page-content {
    width: 480px;
    text-align: center;
}

.logo {
    user-select: none;
}

.logo h1 {
    font-family: 'Canela Web', serif;
    font-weight: 500;
    font-size: 55px;
    line-height: 1em;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 0px 0px 20px rgba(241, 255, 146, 1);
}

.signup-section {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.section-background {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.63);
    border-radius: 70px;
    position: relative;
}

.section-content {
    padding: 0 40px;
}

.section-content h3 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.0;
    margin: 30px 0 20px 0;
}

.signup-form {
    display: flex;
    justify-content: center;
}

.form-group {
    display: flex;
    width: 90%;
    height: 100%;
}

.email-input {
    width: 207px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 4px 0 0 4px;
    padding: 0 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    width: 100%;
    color: #4A1B84;
    outline: none;
    border: none;
}

.email-input::placeholder {
    color: #9C85B8;
}

.submit-button {
    width: 95px;
    height: 40px;
    background: #58AE90;
    border: none;
    border-radius: 0 4px 4px 0;
    color: #FFFFFF;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-button:hover {
    background: #4a9578;
}

.submit-button:active {
    background: #3d7a63;
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
