* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h4{
  text-decoration: underline;
}
:root {
  --primary-color: #154edd;
}

body {
  font-family: Arial, sans-serif;
  background: #144bd8 !important;
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  padding: 10px;
}

.r-btn a {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.main-form {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
}

.form-container {
  background: #eee;
  padding: 30px;
  border-radius: 4px;

  width: 400px;
}

.text-label {
  font-size: 14px;
  font-weight: 600;
  color: #777;
  margin-bottom: 5px;
  display: block;
  width: 100%;
}

.form-step {
  display: none;
  flex-direction: column;
}

.form-step.active {
  display: flex;
}

label {
  margin-top: 10px;
}

input {
  padding: 8px;
  margin-top: 5px;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #000;
}

button {
  margin-top: 20px;
  padding: 10px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 20px !important;
  color: white;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  font-weight: bold;
}