﻿body {
    background-color: #27C5F5;
    /*background-color: #2e3b4e; /*gris azulado*/
}

.registration-form {
    padding: 20px 0;
}

    .registration-form form {
        background-color: #fff;
        max-width: 500px;
        margin: auto;
        padding: 40px 60px;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
    }

    .registration-form .form-icon {
        text-align: center;
        background-color: #5891ff;
        border-radius: 50%;
        font-size: 60px;
        color: white;
        width: 90px;
        height: 90px;
        margin: auto;
        margin-bottom: 50px;
        line-height: 80px;
    }

    .registration-form .item {
        /*border-radius: 20px;*/
        margin-bottom: 25px;
        padding: 10px 20px;
    }

    .registration-form .create-account {
        border-radius: 12px; /* en vez de 0px */
        padding: 10px 20px;
        font-size: 18px;
        font-weight: bold;
        background-color: #5791ff;
        border: none;
        color: white;
        margin-top: 20px;
    }

    .registration-form .social-media {
        max-width: 500px;
        background-color: #fff;
        margin: auto;
        padding: 10px 0;
        text-align: center;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        color: #9fadca;
        border-top: 1px solid #dee9ff;
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
    }

    .registration-form .social-icons a {
        border: 2px solid #5791ff;
        box-shadow: 0 0 4px rgba(0,0,0,0.1);
    }

        .registration-form .social-icons a {
            font-size: 23px;
            margin: 0 3px;
            color: #5691ff;
            border: 1px solid;
            border-radius: 50%;
            width: 45px;
            display: inline-block;
            height: 45px;
            text-align: center;
            background-color: #fff;
            line-height: 45px;
        }

            .registration-form .social-icons a:hover {
                text-decoration: none;
                opacity: 0.6;
            }

@media (max-width: 576px) {
    .registration-form form {
        padding: 40px 20px;
        margin: 0 15px; /* <- Añade margen lateral */
        width: auto;
    }

    .registration-form .form-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
        line-height: 70px;
    }
}

.btn-azul {
    background-color: #0A0099;
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

    .btn-azul:hover {
        background-color: #07006E;
    }


.img-fluid {
    max-width: 200px;
    height: auto;
}

