﻿/* =============================
   Login Page Styling
   ============================= */

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --light-bg: #f8f9fa;
    --border-radius: 12px;
    --shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Page background */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--light-bg), #e9ecef);
    font-family: "Segoe UI", sans-serif;
}

/* Login Card */
.login-card {
    width: 100%;
    max-width: 460px;
    padding: 40px 35px;
    border-radius: var(--border-radius);
    background: #fff;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.4s ease;
}

/* Logo */
.login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

    .login-logo img {
        max-height: 60px;
    }

/* Titles */
.page-title {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.welcome-text {
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-color);
}

/* Input Groups */
.input-group-text {
    background: #f8f9fa;
    border-right: none;
}

.input-group .form-control {
    border-left: none;
    box-shadow: none !important;
}

    .input-group .form-control:focus {
        border-color: var(--primary-color);
    }

/* Toggle Password */
.toggle-password {
    cursor: pointer;
}

/* Button */
.btn-primary {
    font-weight: 500;
    padding: 10px;
    font-size: 1rem;
    border-radius: 8px;
    transition: background 0.2s;
}

    .btn-primary:hover {
        background: #0069d9;
    }

/* Small Animation */
@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
