body {
    font-family: Arial, sans-serif;
    background: rgb(242,255,29);
    background: linear-gradient(135deg, rgba(242,255,29,1) 0%, rgba(0,17,140,1) 49%, rgba(255,0,0,1) 100%);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

main {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.container {
    max-width: 100%;
    padding: 0 20px;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    width: 100px; /* Ajusta el tamaño según sea necesario */
    height: auto;
    margin-bottom: 10px;
}

.large-logo {
    width: 80px; /* Ajusta el tamaño según sea necesario */
    height: auto;
    margin: 10px 0;
    cursor: pointer;
}

.large-logo:hover {
    opacity: 0.7; /* Efecto de hover */
}

h1 {
    font-size: 24px;
    color: #0033A0;
    text-align: center;
}

h2 {
    text-align: center;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
}

.form-group-login {
    width: 100%;
    margin-bottom: 10px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button[type="submit"] {
    background-color: #0033A0;
    color: white;
    border: none;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 4px; 
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #3527f5;
}

.icon-container {
    text-align: center;
    margin-top: 20px;
}

.social-icon {
    width: 50px; /* Ajusta el tamaño según sea necesario */
    height: auto;
    margin: 0 10px;
    cursor: pointer;
}

.social-icon:hover {
    opacity: 0.7; /* Efecto de hover */
}