﻿/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Fondo general */
body {
    background: linear-gradient(135deg, #f0f4ff, #dbe9ff);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contenedor principal */
.container {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* 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;
}

