﻿
#logo-login {
    background: rgba(48, 65, 96, 0.9);
    border-radius: 8px;
    padding: 15px 10px;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

    #logo-login h1 {
        font-size: 28px;
        font-weight: 600;
        text-transform: uppercase;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }

.logo-img {
    height: 45px;
    width: auto;
    vertical-align: middle;
}

/* Login box styling */
.account-box {
    border-radius: 8px;
    background-color: #ffffff;
    padding: 25px 20px;
    font-family: "Open Sans", Arial, sans-serif;
}

.btn-primary {
    background-color: #0DB8DF;
    border-color: #0DB8DF;
    color: #fff;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

    .btn-primary:hover {
        background-color: #10ABCE;
        border-color: #10ABCE;
        color: #fff;
    }

/* Validation */
.text-danger {
    font-size: 12px;
}

/* Forgot Password Link */
.label-forgot {
    font-size: 12px;
    color: #3276B1;
    text-decoration: underline;
}

    .label-forgot:hover {
        color: #23527c;
        text-decoration: none;
    }

body {
    background-image: url("../Images/LogoImagen.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 13px;
    color: #9ea7b3;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative; /* REQUIRED for ::before layering */
    z-index: 0;
}

    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(48, 65, 96, 0.5); /* semi-transparent overlay */
        z-index: -1; /* behind all content */
    }
