@import url('../../Component/css/style.scss'); :root { --green-primary: #007936; --green-secundary: #12a554; --white: #ffffff; --gray: #f5f5f5; --black1: #000000; --black2: #121212; --black3: #999; } .login-body { height: 100vh; display: flex; } .image-cont { background-image: url("../../Assets/Img/image_login.jpg"); width: 50%; height: 100vh; background-repeat: no-repeat; background-size: cover; display: flex; justify-content: center; align-items: center; } .login-cont { background-color: rgb(255, 255, 255); width: 50%; height: 100vh; justify-content: center; align-items: center; display: flex; } .login-form { padding: 30% 10% 0% 10%; width: 100%; height: 100vh; background-color: rgb(255, 255, 255); border-radius: 10px; box-shadow: 5px 5px 5px 5px rgba(97, 97, 97, 0.4); justify-content: center; align-items: center; } .title-h { font-size: 60px; color: var(--green-primary); font-weight: 800; } .title-s { color: rgb(225, 241, 0); font-weight: 500; } .btn-primary:hover{ background-color: var(--green-secundary); border: transparent; }