/* ------------------- */
/* Reset               */
/* ------------------- */

/* Box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Reset margins */
body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
picture {
    margin: 0; 
}

/* set up the body */
body {
    line-height: 1.5;
    min-height: 100vh;
}

/* make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* make form elements easier to work with */
input,
button,
textarea,
select {
    font: inherit;
}

/* remove animations for people who've turned them off */
@media (prefers-reduced-motion: reduce) {  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ------------------- */
/* Styles              */
/* ------------------- */

body { 
    font-family: sans-serif;
    background: linear-gradient(rgb(255, 88, 116), red , red);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: 1rem;
}

.container {
    background-color: white;
    padding: 1rem;
    border-radius: 1rem;
}

.Text {
    margin-top: 16px;
    margin-bottom: 70px;
    text-align: center;
}

input {
    margin: 20px;
    border-radius: 14px;
    border-color: rgb(255, 230, 0);
    border-style:solid;
    background-color: rgb(255, 227, 70);
    width: 250px;
    height: 45px;
    text-align: center;
}

input:focus {
    margin: 20px;
    border-radius: 14px;
    border-color: rgb(255, 230, 0);
    border-style:solid;
    background-color: rgb(255, 227, 70);
    width: 250px;
    height: 45px;
    outline: 0;
    text-align: center;
}

.accepting {
    margin-top: 22px;
}

.img-login {
   margin-top: 10px; 
}