* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    background: #cccacae3;
    padding: 9%;


}
/* Gradient Background  */

.gradient-background {
    background: linear-gradient(300deg, #00bfff, #ff4c68, #ef8172);
    background-size: 180% 180%;
    animation: gradient-animation 18s ease infinite;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Border Animation */
fieldset {
    border: 2px solid #ffffff3c;
    margin-bottom: 10px;
    animation: fieldset 10s ease infinite;
}

@keyframes fieldset {
    0% {
      
            border-top-left-radius: 200%;
          
         
    }

    50% {
        border-bottom-left-radius: 300%;
        border-top-right-radius: 300%;
          
    }

    100% {
            border-bottom-right-radius: 200%;
    }
}


/* End */

.container {
    display: flex;
    flex-flow: column nowrap;
    width: 60%;
    height: 60vh;
    margin: 20px 0 0 20% ;
    padding: 20px;
    background: #fbfbfb24;
    border-radius: 10px 10px 10px 10px;
    border-bottom-left-radius: 20%;
    /* border: 2px solid #fff; */
 
   
}

.logo-section {
   width: 150px;
    position: absolute;
    top: -10%;
}

/* Info */
.info-section {
    width: 60%;
}

.info-section h1 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}
.info-section h2 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 5px;
    color: #fff;
}

.info-section p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 200;
    font-size: 1rem;
    margin-bottom: 5px;
    color: #615353;
}


/* Active Container */
.container .active-screen {
         visibility: visible;
}

/* input-screen */
.input-screen {
    width: 100%;
    height: inherit;
    border-bottom-left-radius: 35%;
   
    
}

/* form */


form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    height: 40vh;
    
    
}

form  label, input {
    display: block;
}

form label {
    font-size: 1.5em;
    font-family: sans-serif;
    color: #fff;
    margin: 20px 0 10px 0;
}

form input {
    width: 50%;
    height: 50px;
    border-radius: 20px;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    margin-top: 25px;
    text-align: center;
    cursor: pointer;
    background: none;
    color: #94cfe8;
}

input::placeholder {
    color: #fff;
}

form input:active {

    border-color:  #ff4c68;
}

/* Button */
button {
    font-weight: 400;
    font-size: 1em;
    color: #fff;
    margin: 10px 0 5px 0;
    width: 30%;
    height: 50px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    background: linear-gradient(300deg, #6d7477, #ff4c68, #ef8172);
   
}

button:hover {
    width: 40%;
    transition: all 0.8s ease;
    background: linear-gradient(300deg, #00bfff, #ff4c68, #ef8172);

}

/* Result */
.score {
    font-family: monospace;
    font-size: 2em;
    color: #fff;
    margin-left: 80%;
}

.result-message {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 1em;
    color: #fff;
}



@media (max-width: 480px) {
.container {
        display: flex;
        flex-flow: column wrap;
        width: 100%;
        height: 70vh;
        margin: 20px 0 0 0;
        padding: 20px;
        background: #fbfbfb24;
        border-radius: 10px 10px 10px 10px;
        border-bottom-left-radius: 20%;
        /* border: 2px solid #fff; */


    }

   .logo-section {
       display: none;
    }

        .info-section h1 {
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            font-size: 1rem;
            margin-bottom: 10px;
            color: #fff;
        }
    
        .info-section h2 {
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            font-weight: 400;
            font-size: 14px;
            margin-bottom: 5px;
            color: #fff;
        }
    
        .info-section p {
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            font-weight: 200;
            font-size: 1rem;
            margin-bottom: 5px;
            color: #615353;
        }
    
    
        /* Active Container */
        .container .active-screen {
            visibility: visible;
        }
    
        /* input-screen */
        .input-screen {
            width: 100%;
            height: inherit;
            border-bottom-left-radius: 35%;
    
    
        }
    
        /* form */
    
    
        form {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            height: 40vh;
    
    
        }
    
        form label,
        input {
            display: block;
        }
    
       
    
        form input {
            width: 80%;
            height: 50px;
            border-radius: 20px;
            border-top: 0px;
            border-left: 0px;
            border-right: 0px;
            margin-top: 25px;
            text-align: center;
            cursor: pointer;
            background: none;
            color: #94cfe8;
        }
    
        input::placeholder {
            color: #fff;
        }
    
        form input:active {
    
            border-color: #ff4c68;
        }
    
        /* Button */
        button {
            font-weight: 400;
            font-size: 0.6em;
            color: #fff;
            margin: 10px 0 5px 0;
            width: 60%;
            height: 50px;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            background: linear-gradient(300deg, #6d7477, #ff4c68, #ef8172);
    
        }
    
        button:hover {
            width: 40%;
            background: linear-gradient(300deg, #00bfff, #ff4c68, #ef8172);
            transition: all 0.8s ease;
    
        }

        /* Result */
       .score {
        font-family: monospace;
        font-size: 1.5em;
        color: #fff;
        margin-left: 70%;
      }

      .result-message {
      font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
      margin-top: 10px;
      padding: 5px;
      font-size: .8em;
      color: #fff;
}
}



