body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; height: 100vh; display: flex; justify-content: center; align-items: center; background-image: url('electrician_installing_epc.jpg'); /* Add your image path here */ background-size: cover; background-color: rgba(0, 0, 0, 0.2); background-blend-mode: darken; background-position: center; background-repeat: no-repeat; } .logo img{ width: 300px; } .login-container { background: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */ padding: 2rem; border-radius: 10px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); width: 100%; max-width: 400px; text-align: center; } .login-form .box { width: 95.5%; padding: 10px; margin: 10px 0; border: 1px solid #ddd; border-radius: 5px; font-size: 16px; outline: none; text-decoration: none; &:hover{ outline: 2px #f5bf23 solid; } } .login-form .btn { width: 100%; padding: 10px; background-color: #f5bf23; color: #333; border: none; border-radius: 5px; font-size: 16px; cursor: pointer; margin-top: 10px; } .login-form .btn:hover { background-color: #fdbe00cb; } .error-message { color: red; margin-bottom: 15px; } h2 { margin-bottom: 20px; color: #333; }