﻿.fotofoto{
    width:100%;
    height:auto;
}
.custom-input {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    transition: all 0.3s;
}

    .custom-input:focus {
        border: 1px solid #007BFF;
        box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    }

.cta-link {
    color: #007BFF; 
    text-decoration: none; 
    font-weight: bold; 
}

    .cta-link:hover {
        text-decoration: underline; 
    }

.cta-linko {
    color:black; 
    text-decoration: none; 
}

.login-box {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.6);
}

@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355);
    }

    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    animation-name: bounceIn;
    animation-duration: 0.7s;
    animation-fill-mode: both;
}



.btn-telegram {
    background-color: #0088cc;
    border-color: #0088cc;
    color: white;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    height: 38px;
    margin-top: -15px;
    margin-bottom: -15px;
    box-shadow: 0 4px 6px rgba(0, 136, 204, 0.5);
}

    .btn-telegram:hover {
        background-color: #0077b3;
        border-color: #0077b3;
        transform: scale(1.02);
        box-shadow: 0 6px 8px rgba(0, 136, 204, 0.6);
        color:white;
    }

    .btn-telegram i {
        font-size: 20px;
        margin-left: 8px;
    }
 .ingresar:hover {
        background-color: #0077b3;
        border-color: #0077b3;
        color: white;
  }


body {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    margin: 0;
}
    body::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: inherit; 
        background-size: cover;
        background-position: center;
        z-index: -1;
    }

.custom-input {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    background-color: #2A2A3C !important;
}
input:-webkit-autofill {
    background-color: #2A2A3C !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 0 0px 1000px #2A2A3C inset !important;
    caret-color: white;
}