/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    /* background: linear-gradient(135deg, #007bff, #4facfe); */
    color: #333;
    margin: 0;
    padding: 0;
    /* display: flex; */
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 600px;
    width: 90%;
    margin: auto;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 8px 40px rgb(144 144 144 / 20%);
    text-align: center;
    overflow: hidden;
}

h2 {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #000000;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    margin-top: 2em;
}

.header h1.tv {
    font-size: 2rem;
    font-weight: 700;
    color: #ff0000;
    /* margin-right: 5px; */
    /* text-shadow: 0 0 10px rgba(79, 172, 254, 0.8); */
}

.header h1.slide {
    font-size: 2rem;
    font-weight: 600;
    color: #000000;
    /* text-shadow: 0 0 10px rgba(0, 123, 255, 0.8); */
}

/* Form Styles */
.form-content {
    padding: 20px 0;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

input.form-control {
    /* border: none; */
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

input.form-control:focus {
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3), 0 8px 20px rgba(0, 123, 255, 0.2);
    border: 1px solid #007bff;
}

button {
    background: linear-gradient(135deg, #4a4a4a, #000000);
    border: none !important;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 0 8px 20px rgb(30 30 30 / 20%);
}

button:hover {
    background: linear-gradient(135deg, #0056b3, #3a96ff);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1), 0 12px 30px rgba(0, 123, 255, 0.4);
}

button:active {
    transform: scale(0.98);
}

/* Error Message */
.error-message {
    color: #6d6d6d;
    font-size: 0.9rem;
    margin-top: 1em !important;
}

/* Spinner */
.spinner {
    display: none;
    position: fixed;
    z-index: 999;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    border: 8px solid rgba(0, 0, 0, 0.1);
    border-top: 8px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.website {
    text-align: center;
    margin-top: 2em;
}

a {
    color: #353535;
    text-decoration: none !important;
    background-color: transparent;
}