:root{
    --main-color : #017A6F;
}
*{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
}
body{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
h1{
    font-weight: bolder;
}
input{
    display: block;
    width: 100%;
    padding: 0.6rem 1rem;
    border: 1px solid #c9c9c9;
    background: transparent;
    margin-bottom: 1rem;
}
input:focus{
    outline: none !important;
    border-color: var(--main-color);
}
button{
    width: 15rem;
    padding: 0.75rem 1rem;
    text-align: center;
    display: block;
    border: none;
    outline: none !important;
    border-radius: 5rem;
    background: #017A6F;
    color: white;
}
.logo{
    width: 14rem;
}
.form-container{
    display: flex;
    align-items: start;
    justify-content: center;
    flex-flow: column;
}
.sponser-container{
    position: relative;
}
.sponser-name{
    display: none;
}
.sponser-name.active{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(241, 255, 247);
    border: 1px solid #c9c9c9;
    padding: 0.6rem 1rem;
}
.sponser-container .sponser-name.active .remove-sponser{
    background: rgb(193, 20, 20);
    height: 1.4rem;
    width: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.4rem;
    cursor: pointer;
    color: white;
    z-index: 1;
}
.verify-sponser{
    position: absolute;
    top: 0;
    right: 0;
    width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    cursor: pointer;
    background: #06ab9d42;
}

form div.eye{
    position: relative;
}
form div.eye .eye-icon{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #ccc;
    cursor: pointer;
}
@media screen and (max-width : 999px) {
    .w-50, .w-75{
        width: 100% !important;
    }

    form div:last-child{
        flex-flow: column;
    }
}