﻿/* Asegura que el html y body cubran todo el alto y ancho de la ventana */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Evita scrolls inesperados */
}

body {
    background-image: url('/images/Background.jpg');
    z-index: -2; 
}

.login-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(top, #002b5c, #dddddd);
    opacity: 0.6;
}

.login-body {
    opacity: .9;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06), 0 1px 0 0 rgba(0, 0, 0, 0.02);
    border-radius: 10px;
}

.grupo-am {
    position: fixed;
    top: -80px;
    left: 10px;
    z-index: 1;
    height: 300px;
}

.logo-cts {
    position: fixed;
    height: 110px;
    bottom: 10px;
    right: 20px;
}

.btn {
    width: 50%;
    padding: 10px;
    border-radius: 4px;
    border: none;
    color: white;
    background-color: #007bff;
    cursor: pointer;
}

 
.link-primary {
    color: #002b5c !important;
}

.am-btn-red {
    color: #fff !important;
    background-color: #e91b2f !important;
    border-color: #e91b2f !important;
}
.am-btn-circle {
    border-radius: 50px;
}

.am-btn-red:hover {
    background-color: #d71526 !important;
    border-color: #d71526 !important;
}

.am-btn {
    padding: 0.6rem 2.14rem;
}
.am-btn-blue-1 {
    background-color: #007dc3 !important;
    border-color: #007dc3 !important;
}

    .am-btn-blue-1:hover {
        background-color: #004990 !important;
        border-color: #004990 !important;
    }

.am-btn-blue-2 {
    background-color: #004990 !important;
    border-color: #004990 !important;
}

    .am-btn-blue-2:hover {
        background-color: #007dc3 !important;
        border-color: #007dc3 !important;
        color:white;
    }
.am-blue-2 {
    color: #004990 !important;
}

.btnLogin {
    color: #ffffff;
    background-color: #035cf7;
    font-size: 19px;
    border: 1px solid #2d63c8;
    border-radius: 50px;
    padding: 15px 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.fill-current {
    fill: #ffffff;
}

.h-7 {
    height: 2rem; 
    width: 2rem; 
}

.btnLogin:hover {
    color: #2d63c8;
    background-color: #ffffff;
}

    .btnLogin:hover .fill-current {
        fill: #2d63c8 !important;
    }

.btnLogin p {
    margin: 0;
    margin-top: 0.3rem;
    margin-left: 1rem; 
    text-transform: uppercase;
    font-size: 1.5rem;
}

/*.btnLogin {
    color: #ffffff;
    background-color: #035cf7;
    font-size: 19px;
    border: 1px solid #2d63c8;
    border-radius: 50px;
    padding: 15px 50px;
    cursor: pointer;
    display: flex;
}

.fill-current {
    fill: #ffffff;
}

.h-7 {
    height: 1.75rem;
}

.btnLogin:hover {
    color: #2d63c8;
    background-color: #ffffff;
}

    .btnLogin:hover .fill-current {
        fill: #2d63c8 !important;
    }

.btnLogin p {
    margin: 0;
    margin-top: 0.3rem;
    margin-left: 0.5rem;
    text-transform: uppercase;
    font-size: 1.5rem;
}*/