body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    background-color: white;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: justify;
}

h1 {
    text-align: center;
    color: #333;
}

.step {
    background-color: #e9ecef;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.step-number {
    background-color: #fb6340;
    color: #e9ecef;
    font-size: 20px;
    font-weight: bold;
    padding: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.step-content {
    flex: 1;
}

.step-content a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.step-content a:hover {
    text-decoration: underline;
}

.note {
    background-color: #fff3cd;
    color: #856404;
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
}

.footer {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #888;
}

/* login mobile */
@media (max-width: 480px) {
    .login-box {
        width: unset;
        width: 100px!important;
    }
  }