﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    overflow: hidden;
    font-family: "Nunito", sans-serif !important;
}

.main-bg {
    min-height: 100vh;
    background: linear-gradient( rgba(0,25,80,.75), rgba(0,25,80,.75)), url('../Images/TecniaBuilding.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 410px;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 30px;
    padding: 40px 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
    animation: fadeIn .6s ease;
}

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.company-logo {
    width: 130px;
    height: auto;
    margin-bottom: 15px;
    background: #fff;
    padding: 7px 10px 2px;
    border-radius: 15px;
}

.login-title {
    color: white;
    font-weight: 700;
    font-size: 32px;
}

.login-subtitle {
    color: rgba(255,255,255,.8);
    font-size: 15px;
}

.input-text {
    display: flex;
    align-items: center;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    text-align: center;
    white-space: nowrap;
    background-color: var(--bs-tertiary-bg);
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
}

.input-text {
    background: white;
    border: none;
    padding: 5px 13px;
    font-size: 20px;
}

.form-control {
    height: 55px;
    border: none;
    box-shadow: none !important;
}

    .form-control:focus {
        border-color: #0d6efd;
    }

.login-btn {
    height: 55px;
    border: none !important;
    background: linear-gradient( 135deg, #00b4ff, #0066ff);
    color: #fff !important;
    font-weight: 600 !important;
    transition: .3s !important;
    font-size: 18px !important;
}

    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,102,255,.4);
    }

.custom-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

    .custom-link:hover {
        color: #9fd2ff;
    }

.remember-label {
    color: white;
    font-size: 14px;
}

.footer-text {
    color: rgba(255,255,255,.7);
    font-size: 13px;
}

.toggle-btn {
    background: white;
    border: none;
    border-radius: 5px 5px;
}

.text-danger {
    color: #ffb3b3 !important;
}

@media(max-width:768px) {

    .login-card {
        padding: 25px;
    }

    .login-title {
        font-size: 26px;
    }
}
