/* @import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400&display=swap'); */

*{
    margin: 0;
    padding: 0%;
    box-sizing: border-box;
}
body{
    font-family: 'Source Sans Pro', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #4158D0;
    background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
    
}
.container{
    width: 70%;
    /* background: red; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.box{
    min-height: 60vh;
    width: 70%;
    /* background: rgb(125, 47, 10); */
    border-radius: 30px;
    box-shadow: 5px 5px 6px rgba(0,0,0,.5), 
                -5px -5px 6px rgba(0,0,0,.5);
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}
h1{
    font-size: auto;
    color: azure;
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 1rem;
}
.form{
    min-width: 50%;
    min-height: 50vh;
    color: azure;
}
label{
    font-size: large;
    font-family: 'Satisfy', cursive;
    line-height: 2;
}
input{
    background: transparent;
    padding: top 10px;
    display: flex;
    color:antiquewhite;
    font-size: large;
    border-bottom: 1px solid whitesmoke;
}
button{
    outline: none;
    margin-left: 1rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    padding: 5px 50px;
    font-size: large;
    color: #4158D0;
    background-color: #FFCC70;
    border-radius: 7px;
}

#loginpic{
    width: 15rem;
    height: 15rem;
    position: relative;
    bottom: -6rem;
    right: 7rem;
    border-radius: 15px;
    z-index: 2;
}
#logo{
    
    position: relative;
    max-width: fit-content;
    z-index: 2;
}
h2{
    position: absolute;
    color: aliceblue;
    right:2rem;
    top: 10rem;
    text-align: center;
    text-shadow: 2px 2px 2px blueviolet;
    max-width: 200px;
    font-size: 40px;
    z-index: 3;
}
.path{
    position: absolute;
    min-height: 100%;
    width: 100%;
    background-color: #0093E9;
background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);

 
    clip-path: circle(350px at right 125px);
}


