* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background-color: #1A1A1A;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.main {
    background-color: #ffd000;
    max-width: 100vw;
    max-height: 100vh;
    max-width: 430px;
    /* Maximum width for larger screens */
    margin: 0px auto;
    box-sizing: border-box;
    box-shadow: 0 0 35px rgba(255, 226, 59, 0.871);

}

.footer {
    font-family: cabin, sans-serif;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: absolute;
    bottom: 0%;
    transform: translate(-50%);
    left: 50%;
    width: 100%;
    margin-bottom: 25px;

    display: flex;
    flex-direction: column;
    cursor: pointer;

}

.footer p {
    margin: 0;
    text-align: center;
    /* Center text alignment */
}

.footer img {
    vertical-align: middle;
    /* Align icon with text vertically */
    margin-left: 5px;
    /* Space between text and icon */
    margin-bottom: 5px;
    height: 20px;
    /* Adjust size of the icon */
    width: auto;
    /* Maintain aspect ratio */
}

.uncover-the-fun-container {
    font-family: roboto;
    font-size: 32px;
    display: flex;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    text-align: center;
    transform: translate(-50%);
    max-width: 430px;
    top: 35%;
    left: 50%;
    width: 100%;
    max-width: 430px;
    box-sizing: border-box;
    transition: transform 0.8s ease;
}

/* Hidden and visible states with animation */
.uncover-the-fun-container.hidden {
    animation: slide-up 0.8s forwards;
}

.uncover-the-fun-container.visible {
    animation: slide-down 0.8s forwards;
}

.uncover-the-fun-in {
    margin: 0;
    /* Remove default margin */
    padding: 0;
}

/* Container for the typing animation */
.splizme2 {
    display: inline-block;
    font-style: italic;
    overflow: hidden;
    /* Hide overflow text */
    white-space: nowrap;
    /* Prevent line breaks */
    border-right: 2px solid #333;
    /* Cursor effect */
}

/* Typing effect */
@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Blinking cursor effect */
@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: #333;
        /* Cursor color */
    }
}

.typing {
    animation: typing 3s steps(80, end) normal both, blink-caret 0.75s step-end infinite;
}

/* Styles for the Get Started button container */
.get-started-container {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    position: fixed;

    bottom: 35%;
    /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    /* Full width to ensure it's centered */
    display: none;
    /* Initially hidden */
    z-index: 1000;
    /* Ensure it stays on top */
    transition: opacity 0.4s ease, visibility 0s ease;
}

/* Styles for the Get Started button */
.get-started-container p {

    background-color: #1A1A1A;
    /* Yellow background */
    color: #ffffff;
    /* Dark text color */
    padding: 15px 30px;
    /* Padding for button appearance */
    border-radius: 8px;
    /* Rounded corners */
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Add shadow */
    transition: background-color 0.3s, box-shadow 0.3s;
    /* Smooth transition */
}

.get-started-container.visible {
    opacity: 1;
    visibility: visible;

}

/* Hover effect for the button */
.get-started-container p:hover {
    background-color: #ffffff;
    /* Darker yellow on hover */
    color: #1A1A1A;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    /* Increase shadow on hover */
}


.header {
    display: flex;
    padding-left: 25px;
    padding-right: 10px;
    justify-content: space-between;
    /* Distributes space between elements */
    align-items: center;
    /* Aligns items vertically in the center */
    padding-top: 5px;
    padding-bottom: 20px;

}

.Spliz {
    font-family: 'Fugaz One';
    color: #1A1A1A;
    font-size: 2em;
    display: flex;
    align-items: center;
    /* Vertically center the text */
}

.me {
    color: white;
    text-shadow: 2px 2px #1A1A1A;
}

.biinstagram-icon {
    height: 70px;
    /* Adjust height as needed */
    width: auto;
    /* Maintain aspect ratio */
}

.wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    /* Full viewport height */
}

.content {
    z-index: 2000;
    background-color: #1A1A1A;
    flex: 1;
    width: 100%;
    max-width: 430px;

    position: relative;
    /* Allow absolute positioning of child elements */
    border-radius: 50px 50px 0px 0px;

    padding-top: 30px;
    padding-left: 20px;
    overflow: hidden;
    transition: transform 0.5s ease;
    transform: translateY(0);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hidden {
    animation: slide-down 0.8s forwards;
}

/* Show content with slide-up animation */
.visible {
    animation: slide-up 0.8s forwards;
}

/* Define slide-down animation */
@keyframes slide-down {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

/* Define slide-up animation */
@keyframes slide-up {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.rect {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;

    justify-content: center;

    display: flex;
    position: fixed;

    cursor: pointer;
    z-index: 1000;
}


.presents {
    display: flex;
    align-items: center;
    width: 100vw;
}

.vit {
    margin-top: 20px;
    margin-left: 7px;
    color: white;
    font-family: Montserrat, sans-serif;
    ;
    font-size: 24px;

}

.vitunite-presents {
    display: flex;
    align-items: center;
}


.form {
    margin-top: 28px;
    margin-left: 12px;
    margin-right: 30px;

    flex: 1;
    /* Allow the form to grow and fill available space */
    display: flex;
    flex-direction: column;
}



/* General container for radio buttons */
.radio-container {
    display: flex;
    gap: 30px;
}

/* Style for each radio button container */
.radio-button {
    font-family: cabin;
    display: flex;
    align-items: center;
    background-color: #1A1A1A;
    color: #f4f4f4;
    border: 1.5px solid rgb(88, 88, 88);
    border-radius: 8px;
    height: 45px;
    width: 140px;
    text-align: center;
    padding-left: 12px;
    padding-right: 20px;
    position: relative;
    cursor: pointer;
    transition: border-color 0.3s;
}

/* Hide default radio button */
.radio-button input[type="radio"] {
    position: absolute;
    opacity: 0;
    /* Hide the default radio button */
    width: 0;
    height: 0;
}

/* Style the custom radio button */
.radio-button input[type="radio"]+label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
}

/* Custom radio button appearance */
.radio-button input[type="radio"]+label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    /* Adjust for positioning */
    transform: translateY(-50%);
    width: 16px;
    /* Size of the custom radio button */
    height: 16px;
    border-radius: 50%;
    background: white;
    /* Default color */
    border: 2px solid #FFC926;
}

/* Change color when radio button is checked */
.radio-button input[type="radio"]:checked+label::before {
    background: #FFC926;
    /* Change color when checked */
    border: 2px solid #ffffff;
}

.radio-button input[type="radio"]:checked~.radio-button {
    border-color: #FFC926;
}



/* Adjust label text */
.radio-button label {
    padding-left: 35px;
    /* Adjust to make room for radio button */
}


textarea.hello {
    font-family: cabin;
    margin-top: 16px;
    border-radius: 12px;
    height: 45%;
    padding: 20px;
    width: 100%;
    /* Full width of the container */
    max-width: 100%;
    /* Prevent it from exceeding container width */
    box-sizing: border-box;
    /* Includes padding and border in the width */
    resize: vertical;
    /* Allow vertical resizing only */
    overflow-y: auto;
    /* Scrollable if content overflows */
    font-size: 16px;
    color: #ffffff;
    /* Text color */
    background-color: #ffffff06;
    border: 1px solid #606060;
}


.word-count-message {
    font-size: 14px;
    font-family: montserrat;
    color: rgb(115, 115, 115);
    margin-top: 3px;
    margin-left: 10px;
    /* Automatically adjust left margin */
    margin-right: 0;
    /* Remove right margin */
    display: block;
    text-align: left;
    width: 100%;
    font-weight: normal;
}

textarea.hello~.word-count-message {
    color: rgb(115, 115, 115);
}

.button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 30px;
    /* Space between buttons */

    /* Space above the button container */
    margin-bottom: 30px;
    /* Margin from the bottom of the form */
    position: sticky;
    bottom: 0;
    padding: 0 0px;

}

.submit-button,
.reset-button {

    width: 100%;

    max-width: 150px;
    margin-top: 40px;
    height: 45px;
    margin-bottom: 10px;
    border: none;
    border-radius: 6px;
    color: white;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    padding: 10px 20px;
    /* Adjust padding for button size */
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    /* Smooth transition */
}

.submit-button {
    color: #1A1A1A;

    background-color: #FFC926;
    /* Yellow background for submit button */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Add shadow */
}

.submit-button:hover {
    background-color: #e0a800;
    /* Darker yellow on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    /* Increase shadow on hover */
}

.reset-button {
    border: 1px solid #606060;
    background-color: #1A1A1A;
    /* Red background for reset button */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Add shadow */
}

.reset-button:hover {
    background-color: #5d5d5d;
    /* Darker red on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    /* Increase shadow on hover */
}

.submit-button:disabled {
    cursor: not-allowed;
    /* Change cursor to 'not-allowed' when button is disabled */
    opacity: 0.5;
    /* Optional: Change opacity to give a visual cue */
}

.popup-message {
    display: flex;
    text-align: center;

    height: 50px;
    flex-direction: column;
    align-items: center;
    background-color: #FFC926;
    color: #1A1A1A;
    padding-top: 15px;
    padding-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    margin: 30px 0;
}

.popup-link {
    color: #1A1A1A;
    text-decoration: none;
    font-weight: bold;
}

.popup-link:hover {
    text-decoration: underline;
}
