/* General styling for the body */
*{
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Poppins;
    position: relative;
    color: #2F2E41;
}

.login-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px;
}

main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    margin: auto;
}

#login-pic {
    width: 55%;
    height: 500px;
}

form {
    width: 80%;
    margin: auto;
}

form span, label {
    font-size: 14px;
    color: #919090;
}

#update, #update2 {
    padding: 10px;
    font-family: Poppins;
}

#update-form input, #update-form2 input, #update-form select, #update-form2 select {
    width: 15rem;
    height: 2rem;
    padding-left: 5px;
    border-radius: 5px;
    outline: none;
}

#update-form input:focus, #update-form2 input:focus {
    border: 1px solid #A987C4;
}

form div {
    margin-top: 20px;
    position: relative;
}

form div input {
    height: 50px;
    width: 90%;
    padding-left: 35px;
    font-size: 14px;
    border: 1px solid #2F2E41;
}

form section input {
    height: 30px;
    width: 70%;
    border: none;
    outline: none;
    border-bottom: 1px solid #2F2E41;
}

.inputBox {
    position: relative;
    margin-top: 30px;
}

.inputBox span {
    position: absolute;
    left: 0;
    bottom: 0;
    padding-bottom: 14px;
    padding-left: 2px;
    transition: 500ms;
}

.inputBox input:valid ~ span, .inputBox input:focus ~ span {
    color: #A987C4;
    transform: translateX(0px) translateY(-15px);
    font-size: 0.8em;
    letter-spacing: 0.1em;
}

form div input:focus {
    outline: 1px solid #A987C4;
    border: 1px solid #A987C4;
}

#login {
    background: #A987C4;
    color: white;
    border: none;
    padding: 15px;
    font-family: Poppins;
    font-size: 14px;
    width: 40%;
    cursor: pointer;
    border-radius: 30px;
}

#signup {
    background: #A987C4;
    color: white;
    border: none;
    padding: 8px;
    font-family: Poppins;
    font-size: 12px;
    width: 20%;
    cursor: pointer;
    border-radius: 10px;
}

#ad-user, #lock {
    position: absolute;
    left: 10px;
    top: 15px;
}

::placeholder {
    font-size: 14px;
    color: #2F2E41;
}