


* {
    box-sizing: border-box;
    font-family: "Abel", sans-serif;
}
/*
body {
    background-color: #003C71;
}
*/

#main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-width: 800px;
}

#main-container::before {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    display: block;
    background-image: url("../img/fondo-uca.webp");
    filter: blur(3px);
    -webkit-filter: blur(3px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.form-container {
    background-color: white;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.heading h1 {
    background-image: linear-gradient( 109.6deg,  rgba(39,142,255,1) 11.2%, rgba(98,113,255,0.78) 100.2% );
    color: white;
    padding: 16px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.card-body {
    padding: 0;
}

#btn-submit {
     background-image: linear-gradient( 109.6deg,  rgba(39,142,255,1) 11.2%, rgba(98,113,255,0.78) 100.2% );;
}