.admission-form {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    overflow: hidden;
    border: 1px solid rgba(66, 153, 225, 0.1);
}

.form-container {
    position: relative;
    z-index: 2;
}

.admission-form h3 {
    color: #1a202c;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 700;
}

.form-subtitle {
    color: #4a5568;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.admission-form-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 0;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #2d3748;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.15);
    outline: none;
}

.form-group input::placeholder {
    color: #a0aec0;
}

.form-group input.error,
.form-group select.error {
    border-color: #fc8181;
    background-color: #fff5f5;
}

.btn_1 {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn_1:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 153, 225, 0.2);
}

.response-message {
    margin-top: 1.25rem;
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
}

.response-message.success {
    background-color: #c6f6d5;
    color: #2f855a;
    border: 1px solid #9ae6b4;
}

.response-message.error {
    background-color: #fed7d7;
    color: #c53030;
    border: 1px solid #feb2b2;
}

/* Form decorations */
.form-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.form-bg-image {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
    opacity: 0.05;
}

.form-icon {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 120px;
    opacity: 0.05;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .admission-form {
        padding: 2.5rem;
    }

    .admission-form h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 992px) {
    .admission-form {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .admission-form {
        padding: 2rem;
    }

    .admission-form h3 {
        font-size: 1.5rem;
    }

    .form-subtitle {
        font-size: 1rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.875rem 1rem;
    }

    .form-bg-image,
    .form-icon {
        width: 150px;
    }
}

/* Animation classes */
.custom-animation1 {
    animation: float 8s ease-in-out infinite;
}

.custom-animation2 {
    animation: spin 15s linear infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(5deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
} 