@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffffffe8;
}
#content{
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DDDDDD;
    padding: 20px;
    background: white;
    box-shadow: 5px 5px 25px 2px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    width: 700px;
}
.inter-content{
    display: flex;
    flex-direction: row;
}
#content #content_header{
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 10px;
}
#content #content_header span{
    font-size: 1.3rem;
    font-weight: 300;
    padding: 5px;
    color: #333333;
}
#content #content_logo h1{
    font-size: 2rem;
    font-weight: 600;
    color: #333333;
}
#content #content_logo{
    display: flex;
    align-items: center;
    gap: 20px;
}
#content #content_logo img{
    width: 60px;
    height: 60px;
    border-radius: 10px;
}
#content form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 10px;
}
#content form div{
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 10px;
}
#content form div:nth-child(4){
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}
#content form div input{
    height: 35px;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    width: 100%;
    box-shadow: 4px 4px 13px 3px rgb(0,0,0,0.1);
    padding: 10px;
    transition: all 0.3s ease;
    border-radius: 5px;
}
#content form div input:focus{
    height: 45px;
    border-left: 2px solid #333;
}
#content form div:nth-child(4){
    width: 100%;
    display: flex;
    align-items: center;
}
#content form label{
    width: 100%;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
}
#content form div:nth-child(4) input{
    width: 80%;
    background-color: #333;
    color: white;
    transition: all 0.2s ease-in-out;
    border: none;
}
#content form div:nth-child(4) input:hover{
    background-color: #707070;
    color: #ffffff;
}
#content form div:nth-child(4) a{
    text-decoration: none;
    display: flex;
    text-align: center;
    color: #333;
    width: 45%;
    align-items: center;
    justify-content: center;
}
