@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}



:root {
    --blue: #38b2ea;
    --red: #e53e3e;
    --yellow: #ffc107;
}
body {
    background: linear-gradient(135deg, var(--blue) 0%, var(--red) 50%, var(--yellow) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: gradientBG 15s ease infinite;
    background-size: 400% 400%;
    padding: 20px;
}
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.login-panel {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 420px;
    height: 580px;
}
/* Logo Animation from Example 2 */
.logo-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}
.logo-outline {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    animation: pulseOutline 2s infinite alternate;
}
.logo-outline:nth-child(1) {
    animation-delay: 0s;
}
.logo-outline:nth-child(2) {
    width: 110%;
    height: 110%;
    left: -5%;
    top: -5%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation-delay: 0.5s;
}
.logo-outline:nth-child(3) {
    width: 120%;
    height: 120%;
    left: -10%;
    top: -10%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation-delay: 1s;
}
@keyframes pulseOutline {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(15deg); }
}
.logo-img {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: white;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: floatLogo 5s ease-in-out infinite, rotateLogo 15s linear infinite;
}
@keyframes floatLogo {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
@keyframes rotateLogo {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.header-gradient {
    background: linear-gradient(to right, var(--red), var(--yellow));
    padding: 20px 20px 10px 20px;
    position: relative;
    overflow: hidden;
}
.header-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 60%);
    animation: rotate 30s linear infinite;
}
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.quote-box {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 5px 15px;
    margin: 10px auto 0px;
    max-width: 90%;
    position: relative;
    z-index: 1;
}
.input-group {
    position: relative;
    margin-bottom: 15px;
}
.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
}
.input-field {
    width: 100%;
    padding: 0.5rem 2rem 0.5rem 3rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(209, 213, 219, 0.5);
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}
.input-field:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(56, 178, 234, 0.25);
}
.btn-gradient {
    background: linear-gradient(to right, var(--red), var(--yellow));
    color: white;
    transition: all 0.3s ease;
}
.btn-gradient:hover {
    background: linear-gradient(to right, var(--yellow), var(--red));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.tab-button {
    padding: 6px 16px;
    background: transparent;
    border: none;
    color: #4b5563;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}
.tab-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--blue);
    transition: width 0.3s ease;
}
.tab-button.active {
    color: var(--blue);
}
.tab-button.active::after {
    width: 100%;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.help-item {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}
.help-item:last-child {
    border-bottom: none;
}
.form-container {
    padding: 12px 25px;
}


.div-bas {
position: absolute;
bottom: 0;
left: 0;
right: 0;
text-align: center;
}
.text-mq{
font-size: 1.35rem;
}
