* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1652f0;
}

body {
      font-family: Arial, sans-serif;
      background: #1652f0 !important;
      
    }

.navbar {
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0px;
    padding: 20px;
}

.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: 8px;
      
      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: 6px;
      color: #000;
    }

    button {
      margin-top: 20px;
      padding: 10px;
      width: 100%;
      background-color: var(--primary-color);
      border-radius: 6px !important;
      color: white;
      border: 2px solid var(--primary-color);
      cursor: pointer;
      font-weight: bold;
    }