﻿body {
    background: #ffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h2 {
    color: rgb(17, 0, 255);
    font-weight: 700;
}

.contenedorLogin {
    background: #ffff;
    color: #000000;
    border: none;
    border-radius: 16px;
    padding: 2rem;
    width: 360px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.form-control {
    background: #ffff;
    border: 1px solid black;
    color: #000000;
}

    .form-control:focus {
        background: #ffff;
        color: #000000;
        box-shadow: 0 0 0 2px #456be9;
    }
