﻿/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Fondo general */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-45deg, #9790d9, #f5c6c6, #999, rgba(42,77,155,0.3),#99b1bd);
    background-size: 400% 400%;
    animation: gradientBG 12s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Título */
.circle-text h2 {
    font-size: 24px;
    color: #2a4d9b;
    margin-bottom: 10px;
}

.circle-text strong {
    color: #1c2e6e;
}

/* Inputs */
.input-group {
    margin: 15px 0;
    position: relative;
}

    .input-group i {
        position: absolute;
        top: 12px;
        left: 10px;
        color: #999;
    }

.input {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: border-color 0.3s;
}

    .input:focus {
        border-color: #2a4d9b;
        outline: none;
    }

/* Botón */
.btn-login {
    background-color: #2a4d9b;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .btn-login:hover {
        background-color: #1c2e6e;
    }

/* Enlaces */
.pointer {
    color: #2a4d9b;
    cursor: pointer;
    text-decoration: underline;
    font-size: 14px;
}

/* Mensajes */
p {
    font-size: 14px;
    margin-top: 10px;
    color: #555;
}

b {
    color: #2a4d9b;
}


/* Título principal*/ 
.form-title {
    font-size: 26px;
    font-weight: bold;
    color: #2a4d9b;
    margin-bottom: 5px;
}

.form-subtitle {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

 Etiquetas 
.input-group label {
    display: block;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #2a4d9b;
    margin-bottom: 5px;
}

/* Inputs */
.input {
    padding: 12px 12px 12px 35px;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: all 0.3s ease;
}

    .input:focus {
        border-color: #2a4d9b;
        box-shadow: 0 0 5px rgba(42,77,155,0.3);
    }

/* Botón principal */
.btn-primary {
    background: linear-gradient(135deg, #2a4d9b, #1c2e6e);
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    transition: transform 0.2s ease, background 0.3s ease;
}

    .btn-primary:hover {
        background: #1c2e6e;
        transform: scale(1.02);
    }



.container {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    text-align: center;
    color: #333;
    animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

