﻿ 
:root {
    --primary-color: #2a5bd7;
    --secondary-color: #00d4aa;
    --dark-color: #0a0e2a;
    --light-color: #f8f9fa;
    --accent-color: #ff6b35;
}

* {
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f5f7ff;
    color: #333;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(10, 14, 42, 0.95) !important;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--secondary-color) !important;
}

    .navbar-brand span {
        color: var(--primary-color);
    }

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 8px;
    transition: all 0.3s ease;
}

    .nav-link:hover {
        color: var(--secondary-color) !important;
    }

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Auth Wrapper */
.auth-basic-wrapper {
    flex: 1;
    padding: 100px 0 50px;
}

/* Auth Card */
.auth-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(10, 14, 42, 0.1);
    border: none;
    overflow: hidden;
    border-top: 5px solid var(--primary-color);
}

    .auth-card .card-body {
        padding: 3rem;
    }

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

    .auth-header h4 {
        font-size: 1.8rem;
        color: var(--dark-color);
        margin-bottom: 0.5rem;
    }

    .auth-header p {
        color: #666;
        margin-bottom: 0;
    }

/* Form Styles */
.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.25rem rgba(42, 91, 215, 0.15);
    }

/* Password Input Group */
.input-group {
    border-radius: 10px;
}

    .input-group .form-control {
        border-right: 0;
    }

.input-group-text {
    background-color: #fff;
    border: 1px solid #ddd;
    border-left: 0;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
}

    .input-group-text:hover {
        background-color: #f8f9fa;
        color: var(--primary-color);
    }

/* Checkbox */
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(42, 91, 215, 0.25);
}

/* Login Button */
.btn-grd-primary {
    background: linear-gradient(135deg, var(--primary-color), #6c8dfa);
    border: none;
    color: white;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-grd-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(42, 91, 215, 0.3);
        color: white;
    }

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

    a:hover {
        color: #1e4bc7;
    }

/* Separator */
.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
}

    .separator .line {
        flex: 1;
        height: 1px;
        background-color: #e0e0e0;
    }

    .separator p {
        padding: 0 1rem;
        margin-bottom: 0;
        color: #666;
        font-size: 0.9rem;
    }

/* Social Login Buttons */
.social-login {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

    .social-btn:hover {
        transform: translateY(-3px);
        color: white;
    }

.btn-google {
    background: linear-gradient(135deg, #DB4437, #E57373);
}

.btn-facebook {
    background: linear-gradient(135deg, #4267B2, #5C94FF);
}

.btn-linkedin {
    background: linear-gradient(135deg, #0077B5, #00A0DC);
}

.btn-github {
    background: linear-gradient(135deg, #333, #666);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: #aaa;
    padding: 2rem 0;
    margin-top: auto;
}

.copyright {
    text-align: center;
}

    .copyright a {
        color: var(--secondary-color);
    }


/* SUCCESS (Green) */
.toast-success {
    background-color: #28a745 !important;
    color: #fff !important;
}

/* WARNING (Orange/Yellow) */
.toast-warning {
    background-color: #f39c12 !important;
    color: #fff !important;
}

/* ERROR (Red) */
.toast-error {
    background-color: #e74c3c !important;
    color: #fff !important;
}

/* INFO (Blue) */
.toast-info {
    background-color: #3498db !important;
    color: #fff !important;
}
/* Responsive */
@media (max-width: 768px) {
    .auth-card .card-body {
        padding: 2rem;
    }

    .auth-basic-wrapper {
        padding: 80px 0 30px;
    }
}

@media (max-width: 576px) {
    .auth-card .card-body {
        padding: 1.5rem;
    }

    .auth-header h4 {
        font-size: 1.5rem;
    }
}
@media (max-width: 412px) {
    .addpading {
        padding: 15px !important;
    }
}

 
