body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: rgb(20, 21, 27);
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 20px;
    border-radius: 30px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


h1 {
    margin: 50px 0;
    text-align: center;
    font-size: 2.5rem;
}


input {
    margin: 10px 0;
    padding: 10px;
    width: 80%; 
    border: 1px solid rgb(189, 187, 187);
    border-radius: 8px;
    font-size: 16px;
}

input::placeholder {
    color: #9ca3af;
}

input:focus {
    border-color: #010b1c; 
    outline: none;
}

input[type="date"]::-webkit-datetime-edit {
    color: #9ca3af;
}


form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

label{
    display:none;
}


button {
    padding: 12px;
    margin-top: 20px;
    width: 80%;
    background-color: #0d0d0d;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    border-style: none;
    cursor: pointer;
}

button:hover {
    background-color: #222;
    transition: background-color 0.3s ease;
}




#left-side {
    display: none;
}

#left-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}


.content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

#message-page{
    width: 100%;
    height:100vh;
    flex-direction: column;
    display:flex;
    justify-content: center;
    align-content: center;
    padding: 20px;
    
}
.home{
    font-family: "Yellowtail", sans-serif;
    background-color: #010105;
}

.message-page{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        width: 100%;
}
.home{
    background-image: url("https://cdn.pixabay.com/photo/2017/02/12/12/42/wall-2059909_640.png");
}
#message{
    
    width: 50%;
    height:80%;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.neon {
    color: #fff;
    text-shadow: 
        0 0 7px #fff, 
        0 0 10px #fff, 
        0 0 21px #fff, 
        0 0 42px #2323ff, 
        0 0 82px #2323ff, 
        0 0 92px #2323ff, 
        0 0 102px #2323ff, 
        0 0 151px #2323ff; 
    

}

.neon h1, .neon h3 {
    animation: flicker 0.11s ease-in-out infinite alternate;
}

.neon h1 {
    font-size: 5.2rem;
    font-weight:100;
}

.neon h5 {
    font-size: 2.2rem;
    font-weight: 100;

}


@keyframes flicker {
    0% {
        text-shadow: 
            0 0 4px #fff,
            0 0 10px #fff,
            0 0 18px #fff,
            0 0 38px #2323ff,
            0 0 73px #2323ff,
            0 0 80px #2323ff,
            0 0 94px #2323ff,
            0 0 140px #2323ff;
    }
    100% {
        text-shadow: 
            0 0 4px #fff,
            0 0 11px #fff,
            0 0 19px #fff,
            0 0 40px #ff00ff,
            0 0 80px #ff5c00,
            0 0 90px #ff5c00,
            0 0 100px #2323ff,
            0 0 150px #ff00ff;
    }
}

.neon-button {
    color: #ffffff; 
    background-color: transparent; 
    border: 1px solid #2323ff;
    border-radius: 10px; 
    padding: 10px 20px; 
    font-size: 1.2rem; 
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    
}

.neon-button:hover {
    color: #2323ff; 
    background-color: rgba(0, 170, 255, 0.1); 
    box-shadow: 
        0 0 10px #2323ff,
        0 0 20px #2323ff,
}


/* Responsive Design */
@media (min-width: 768px) {
    .container {
        width: 80%;
    }

    .content {
        flex-direction: row;
    }

    form {
        width: 50%;
    }

    #left-side {
        display: block;
        width: 50%;
    }
}
