@import url('https://fonts.googleapis.com/css?family=Thasadith'); .loginWrapper{ display: flex; height: 100vh; justify-content: center; align-items: center; //background-color: #aaafff; background-image: url("../../../../assets/images/login/background.jpg"); background-repeat: no-repeat; background-size: contain; background-position: center bottom; margin-top: -56px !important; .formContainer{ display: flex; flex-direction: column; margin-top: -17.5vh; .logoLogin{ width: 200px; height: auto; align-self: center; } .textLogin{ text-align: center; margin-top: 5vh; margin-bottom: 6.5vh; font-size: 1.25rem; font-weight: lighter; color: #555; font-family: 'Thasadith', sans-serif; } .formParent{ display: flex; flex-direction: row; .inputContainer{ display: flex; flex-direction: column; background-color: #fff; box-shadow: 0 14px 28px rgba(0,0,0,0.06), 0 10px 10px rgba(0,0,0,0.03); .usernameForm{ border: 0px; padding: 15px; width: 20vw; border-bottom: 1px solid #eee; } .passwordForm{ border: 0px; padding: 15px; width: 20vw; } } .buttonLogin{ width: 100px; height: 35px; align-self: center; margin-left: -3vw; box-shadow: 0 14px 28px rgba(0,0,0,0.09), 0 10px 10px rgba(0,0,0,0.06) !important; color: #fff; border: 0px; background-color: #6772e5; border-radius: 2.5px; cursor: pointer; transition: 0.5s; } .buttonLogin:hover{ background-color: #424770; } } } } textarea:focus, input:focus{ outline: none; }