.signup-container { background-image: url('../images/registration.jpg'); background-size: cover; background-position: center; height: 100vh; display: flex; justify-content: center; align-items: center; width: 100%; flex-direction: column; padding: 20px; box-sizing: border-box; } h1 { text-align: center; } .form-group { margin-bottom: 15px; } label { display: block; margin-bottom: 5px; } input { width: 100%; padding: 8px; margin: 5px 0; border: 1px solid #ddd; border-radius: 4px; } button { width: 100%; padding: 10px; background-color: #007bff; color: white; border: none; border-radius: 4px; cursor: pointer; } button:hover { background-color: #0056b3; } p { text-align: center; } .login-container { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; background-color: #f4f4f4; } h1 { margin-bottom: 20px; color: mediumvioletred; } .input-group { margin-bottom: 15px; display: flex; flex-direction: column; } label { font-size: 14px; font-weight: bold; } input { padding: 10px; font-size: 16px; margin-top: 5px; border-radius: 5px; border: 1px solid #ccc; width: 250px; } button { padding: 12px 20px; background-color: mediumvioletred; color: white; border: none; border-radius: 5px; cursor: pointer; font-size: 16px; width: 100%; } button:hover { background-color: #e91e63; }