.top-line .candy_challenge img{
    position: absolute;
    left: 2%;
    right: 76.39%;
    top: 3%;
    bottom: 0%;
    
    background: url("image 6.png");
 }
 
 
.navbar {
    /* About */
  
    position: absolute;
    width: 400px;
    height: 27px;
    left: 70%;
    top: 5%;
    justify-content: space-between;
  
    display: flex;
  
    font-family: "Poppins";
    font-style: normal;
    font-weight: normal;
    font-size: 27px;
    line-height: 27px;
    /* identical to box height */
  
    color: black;
  }
  
  .navbar-item {
    text-decoration: none;
  }

body {
    --color-primary:#F58585;
    --color-primary-dark: #f86363;
    --color-secondary: #252c6a;
    --color-error: #cc3333;
    --color-success: #4bb544;
    --border-radius: 4px;

    margin: 0;
    height: 105vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: url(background.jpg);
    background-size: cover;
}

.rectangle {
    top: 33%;
    width: 400px;
    max-width: 400px;
    margin: 1rem;
    padding: 2rem;

    background: #CEFFF3;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 40px;
}

.rectangle,
.form__input,
.form__button {
    font: 500 1rem 'Quicksand', sans-serif;
}

.form--hidden {
    display: none;
}

.form > *:first-child {
    margin-top: 0;
}

.form > *:last-child {
    margin-bottom: 0;
}

.form__title {
    position: absolute;
    width: 171px;
    height: 85px;
    top: 20%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%) ;
    margin-bottom: 2rem;
    text-align: center;
    color: #E18B8B;
}

.form__email{
    color: #F58585;
    font-size: larger;
}

.form__password{
    color: #F58585;
    font-size: larger;
}

.form__message {
    text-align: center;
    margin-bottom: 1rem;
}

.form__message--success {
    color: var(--color-success);
}

.form__message--error {
    color: var(--color-error);
}

.form__input-group {
    margin-bottom: 1rem;
}

.form__input {
    display: block;
    height: 50px;
    width: 100%;
    padding: 0.75rem;
    box-sizing: border-box;
    border-radius: 20px;
    border: 1px solid #dddddd;
    outline: none;
    background: #ffffff;
    transition: background 0.2s, border-color 0.2s;
}


.form__input:focus {
    border-color: var(--color-primary);
    background: #ffffff;
}

.form__input--error {
    color: var(--color-error);
    border-color: var(--color-error);
}

.form__input-error-message {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-error);
}

.form__button {
    width: 100%;
    padding: 1rem 2rem;
    font-weight: bold;
    font-size: 1.1rem;
    color: #ffffff;
    border: none;
    border-radius: 11px;
    outline: none;
    cursor: pointer;
    background: var(--color-primary);
    
}


.form__button:hover {
    background: var(--color-primary-dark);
}

.form__button:active {
    transform: scale(0.98);
}

.form__text {
    color: #F58585;
    text-align: center;
}

.form__link {
    color:#F58585;;
    text-decoration: none;
    cursor: pointer;
}

.form__link:hover {
    text-decoration: underline;
}