/* General Page Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #6a11cb, #2575fc);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

h1.page-heading {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 70px;
    background: hsl(0, 0%, 100%);
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-in-out;
}



/* Form Styling */
input[type="email"],
input[type="password"],
input[type="text"],
button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

input:focus {
    outline: none;
    border-color: #6a11cb;
    box-shadow: 0 0 5px rgba(106, 17, 203, 0.5);
    transition: 0.2s ease-in-out;
}

button {
    background: #6a11cb;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

button:hover {
    background: #4d0d99;
}

button:disabled {
    background: #aaa;
    cursor: not-allowed;
}

/* Password Visibility Toggle */
.toggle-password {
    color: #666;
    font-size: 1.2rem;
    user-select: none;
}

.toggle-password:hover {
    color: #333;
}

/* Error and Valid Messages */
.error-message {
    font-size: 0.85rem;
    color: #e74c3c;
}

.valid-message {
    font-size: 0.85rem;
    color: #2ecc71;
}

/* OTP Resend Timer */
#resend-timer {
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 10px;
    color: #e74c3c;
}

/* Keyframes for Smooth Fade-In */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.o {
    position: absolute;
    top: 20px; /* Distance from the top */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust position to center */
    text-align: center;
    width: 100%;
}

.o h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem; /* Adjust size as needed */
    color: #ffffff; /* White text for contrast */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Optional shadow effect */
    margin: 0; /* Remove default margin */
    padding: 0;
}

