﻿ 
body {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1557682224-5b8590cd9ec5') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Segoe UI', sans-serif;
}

.login-card {
    border-radius: 15px;
    overflow: hidden;
    animation: fadeInUp 0.7s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-control {
    border-radius: 8px;
    padding-left: 40px;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #6c757d;
}

.form-group {
    position: relative;
}

.card-header {
    background: linear-gradient(90deg, #0062E6, #33AEFF);
}

.btn-primary {
    border-radius: 8px;
    padding: 10px;
    font-size: 1.1rem;
}

.btn-outline-light {
    border-radius: 8px;
    font-size: 0.95rem;
}

 /*Register Page*/

/* Section title */
h2 {
    font-weight: 600;
    color: #004085;
}

/* Info banner */
.info-banner {
    background: linear-gradient(90deg, #17a2b8, #138496);
    border-radius: 8px;
    padding: 8px 12px;
}

/* Search input */
.form-floating .form-control {
    border-radius: 8px;
    border: 1px solid #ced4da;
    box-shadow: none;
    transition: 0.3s ease;
}

    .form-floating .form-control:focus {
        border-color: #17a2b8;
        box-shadow: 0 0 8px rgba(23, 162, 184, 0.4);
    }

/* Search results container */
#userListContainer {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 10px;
    margin-top: 8px;
}

/* Search list styling */
#userList li {
    padding: 10px 12px;
    border-radius: 6px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

    #userList li:hover {
        background-color: #e2f3f5;
        transform: translateX(3px);
    }

/* No results message */
.no-results {
    color: #6c757d;
    font-style: italic;
    padding: 5px;
    text-align: center;
}