:root { 
    --main-color: rgb(41, 42, 42);
    --second-color: #ed143d;
    --third-color: #e0d3d3;
    ; 
}
* { 
    font-family: "Ubuntu", sans-serif;
}
html, body { 
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    background-color: black;
}
.login {
    max-width: 300px;
    /* margin: auto auto; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* border: 1px solid var(--main-color); */
    border-radius: 90px;
    padding: 43px;
    background-color: #ebe6e6;
    /* box-shadow: 0 0 10px 0 var(--main-color); */
    z-index: 5;
}


.one {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 45%;
    left: 46%;
    transform: translate(-113%, -149%);
    border-radius: 50%;
    background-color: #ff0000;
}

.two {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 15%;
    left: 60%;
    transform: translate(4%, 44%);
    border-radius: 50%;
    background-color: #ff0000;
}

.logo, .title { 
    text-align: center;
}
.logo p {
    font-size: 18px;
    font-weight: bold;
    color: black;
    font-family: cursive;
}


.logo p span {
    color: var(--second-color) ;
}
.title img {
    width: 70%;
    height: 70%;
}

.title p { 
    color: #a59999;
    line-height: 1.5;

}
form h3 { 
    color: var(--third-color);
    font-size: 13px;
    font-weight: 100;
    margin-bottom: auto;
}
form .name {
    background-color: #e6cece;
    padding: 12px;
    margin-bottom: 18px;
    border-radius: 30px;
    width: 90%;
    display: flex;
    align-items: center;
}



form input {
    padding: 7px;
    background: none;
    border: transparent;
    text-transform: capitalize;
    font-size: 12px;
    /* border-radius: 7px; */
    /* margin: 5px 0 20px 0; */
    /* position: relative; */
    /* width: 95%; */
}
.name input:focus { 
    outline: 0;
}

.name i {
    margin-right: 9px;
    margin-left: 13px;
}


.password .help { 
    display: flex;
    justify-content: space-between;
}
.password .help a { 
    color: #4f4f72;
    text-decoration: none;
    margin-top: 13px;
    font-size: 13px;
    transition: 0.3s;
}
.password .help:hover a { 
    color: var(--third-color);
}
form button {
    width: 100%;
    padding: 18px;
    border-radius: 30px;
    background-color: #ff0000;
    border: navajowhite;
    /* box-shadow: 0 0 4px 0 var(--second-color); */
    color: white;
    text-transform: capitalize;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover { 
    background-color: #7b72d1;
}
.footer { 
    text-align: center;
    margin-top: 27px;
    margin-bottom: -10px;
}
.footer p { 
    color: #a59999;
    font-size: 13px;
}
.footer p a { 
    text-decoration: none;
    color: #595b77;
    font-size: 13px;
    transition: 0.3s;
}
.footer p a:hover { 
    color: white ;
}


@media (max-width: 600px) { 
    .logo p {
        font-size: 14px;
    }
    
    
    /* .two, .one { 
        display: none;
    } */
    .title h2 {
        font-size: 10px;
    }
    .title p {
        font-size: 10px;
    }
    form input::placeholder { 
        font-size: 10px;
    }
    
    .password .help a {
        margin-top: 18px;
        font-size: 9px;
    }
    .footer p, .footer p a {
        font-size: 10px;
    }
    form button {
        font-size: 12px;
    }

    /* new edit style  */
    .name i {
        font-size: 11px;
    }
    .login {
        border-radius: 100px;
        padding: 33px;
        width: 80%;
        min-height: 50%;
        background-color: #ebe6e6;
        top: 55%;
        left: 45%;
        transform: translate(-50%, -50%);

    }
        .one {
        width: 140px;
        height: 140px;
        top: 29%;
        left: 45%;
    }
    
        .two {
        width: 80px;
        height: 80px;
        top: 5%;
        left: 82%;
    }
    
    
    
    
    
    
    
    
}