/* General Reset */

/* Responsive Container */
.container {
    width: 100%;
    max-width: 400px;
}


/* Login box styling */
.login-box {
    background-color: #ccfbf1; /* Teal-100 */
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Logo animation */
@keyframes pulseEffect {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}



.animated-logo {
    width: 100px;
    height: auto;
    animation: pulseEffect 2s infinite;
}


/* Titles */
.title h1 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

h2 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 16px;
}

/* Tabs */
.tab-container {
    display: flex;
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
}

.tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.tab a {
    color: white;
    text-decoration: none;
    display: block;
}

.tab:first-child {
    background-color: #facc15; /* Yellow-500 */
}

.tab:last-child {
    background-color: #0d9488; /* Teal-600 */
}

/* Form inputs */
.form-group input {
    width: 100%;
    border: 1px solid #ccc;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 12px;
    box-sizing: border-box;
}

/* Sign-in button */
.btn {
    width: 100%;
    background-color: #0d9488; /* Teal-600 */
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #0f766e; /* Darker Teal */
}

/* Message Styling */
.message {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}

/* 💻 Responsive Design */
@media screen and (max-width: 480px) {
    .login-box {
        width: 100%;
        padding: 20px;
    }

    .animated-logo {
        width: 80px;
    }

    .title h1 {
        font-size: 18px;
    }

    h2 {
        font-size: 14px;
    }

    .tab {
        font-size: 14px;
        padding: 8px;
    }

    .form-group input {
        padding: 10px;
    }

    .btn {
        padding: 10px;
    }
    .register-box {
        width: 100%;
        padding: 20px;
    }
    

    .otp-btn {
        padding: 10px;
    }
}


/* Register box styling */
.register-box {
    background-color: #ccfbf1; /* Teal-100 */
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}


/* OTP container */
.otp-container {
    display: flex;
    gap: 8px;
}

.otp-container input {
    flex: 1;
    border: 1px solid #ccc;
    padding: 12px;
    border-radius: 6px;
}

.otp-btn {
    background-color: #0d9488; /* Teal-600 */
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.otp-btn:hover {
    background-color: #0f766e; /* Darker Teal */
}


