@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(-45deg, #121212, #1a1a1a, #242424, #1e1e1e);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    display: flex;
    max-width: 1200px;
    margin: 20px;
    background-color: rgba(30, 30, 30, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease-out;
}

.info-section {
    flex: 1;
    background: linear-gradient(135deg, #ffd600, #ffb300);
    padding: 40px;
    color: #000;
    position: relative;
    overflow: hidden;
}

/* .content{ */
    /* display: flex; */

/* } */
.left-content{
    width: 50%;
}
.left-content img,.right-content img{
    width: 15rem;
}

.info-content {
    animation: float 6s ease-in-out infinite;
}

.info-section h1 {
    font-size: 36px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.info-section p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

.info-section p:nth-child(2) { animation-delay: 0.2s; }
.info-section p:nth-child(3) { animation-delay: 0.4s; }

.video-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.form-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.4s forwards;
}

.input-group {
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    transition: transform 0.3s ease;
}

.input-group:nth-child(1) { animation-delay: 0.6s; }
.input-group:nth-child(2) { animation-delay: 0.7s; }
.input-group:nth-child(3) { animation-delay: 0.8s; }
.input-group:nth-child(4) { animation-delay: 0.9s; }
.input-group:nth-child(5) { animation-delay: 1.0s; }

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #ffd600;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid transparent;
    border-radius: 8px;
    background-color: #333;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.input-group input:focus {
    border-color: #ffd600;
    outline: none;
    box-shadow: 0 0 10px rgba(255, 214, 0, 0.2);
}

.btn {
    width: 100%;
    padding: 12px;
    background-color: #ffd600;
    color: #000;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.5s ease-out 1.2s forwards;
    margin-top: 10px;
}

.btn:hover {
    background-color: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 214, 0, 0.2);
}

.btn:active {
    transform: translateY(0);
}

.sign-in-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    opacity: 0;
    animation: fadeIn 0.5s ease-out 1.5s forwards;
}

.sign-in-link a {
    color: #ffd600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sign-in-link a:hover {
    color: #ffb300;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column-reverse;
        margin: 10px;
    }

    .info-section {
        padding: 20px;
    }

    .form-section {
        padding: 20px;
    }
}