body {
    background-color: #f7f7f7;
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.min-vh-100 {
    min-height: 100vh;
}

.logo {
    max-width: 500px; /* Ajustado a un max-width de 500px */
    width: 100%; /* Asegura que el logo escale correctamente */
    margin: 20px 0;
}

.registration-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    width: 100%;
    max-width: 500px; /* Ajustado para coincidir con el ancho máximo del logo */
}

.form-title {
    color: #007bff;
    margin-bottom: 20px;
    font-weight: 700;
}

.input-group-text {
    background-color: #007bff;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    height: 100%; /* Asegura que el ícono tenga la misma altura que el input */
    padding: 0 10px; /* Ajusta el padding si es necesario */
    border-radius: 0; /* Remueve cualquier borde redondeado */
}

.input-group .form-control {
    border-left: 0;
    border-radius: 0; /* Remueve bordes redondeados para un look más uniforme */
}

.input-group {
    flex-wrap: nowrap;
    align-items: stretch;
}

.input-group .input-group-prepend .input-group-text {
    border-right: 1px solid #ced4da; /* Ajuste de borde para que coincida con el input */
}

.btn-block {
    margin-bottom: 15px;
    font-weight: 500;
}

.social-login {
    max-width: 500px; /* Ajustado para coincidir con el ancho del formulario */
    margin: 0 auto;
}

.social-login .btn {
    font-size: 16px;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-login .btn i {
    margin-right: 10px;
}

.footer-graphic {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.footer-graphic img {
    width: 100%;
    opacity: 0.8;
}
