* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inclusive Sans', sans-serif;
    background-color: #fff;
    min-height: 100vh;
    overflow-y: auto;
}

.container {
    padding: 2.5rem 1rem;
    /*background-image: url('../images/bg11.png');*/
    background-size: cover;
    background-position: center;
    max-width: 765px;
    margin: auto;
    aspect-ratio: 393/852;
    text-align: center;
    position: relative;
}

.logo {
    width: 25%;
    margin-top: 5vw;
    margin-bottom: 4.875rem;
    display: inline-block;
    object-fit: contain;
}
.banner {
    width: 100%;
    margin-top: 5vw; 
    display: inline-block;
    object-fit: contain;
}
.content {
    text-align: left;
    margin: 0 auto;
    padding: 0;
    color: #E75480;
    width: 70%;
}

.message {
    font-family: 'Inclusive Sans', sans-serif;
    font-size: 4vw;
    margin-bottom: 1.75rem;
    color: #D94B73;
    font-style: italic;
    letter-spacing: -0.3px;
    font-weight: normal;
}
/* Mobile (max-width: 768px) */
@@media (max-width: 768px) {
    .message {
        line-height: 1.625rem;
    }
}

.input-group {
    width: 100%;
    margin: 15vw 0;
}

input {
    width: 100%;
    padding: 0.6875rem 0;
    border: 1px solid #D94B73;
    border-radius: 4px;
    margin-bottom: 1.1875rem;
    font-size: 5vw;
    font-weight: normal;
    outline: none;
    color: #D94B73;
    font-family: 'Inclusive Sans', sans-serif;
    text-align: center;
    font-style: italic;
}

    input:last-child {
        margin-bottom: 0;
    }

    input::placeholder {
        color: #D94B73;
        opacity: 0.8;
        font-style: italic;
    }

.btn {
    background-color: #D94B73;
    color: white;
    padding: 0.6875rem 0;
    border: none;
    border-radius: 4px;
    font-size: 5vw;
    font-weight: normal;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
    margin-bottom: 12.5rem;
    margin-top: 10vw;
}

    .btn:hover {
        background-color: #1F265B;
    }

.floral-border {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* background-image: url('../images/hoa1.jpg'); */
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
}
