@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Ubuntu', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-container {
    display: flex;
    align-items: center;
    height: 100px;
    width: 100%;
    background: linear-gradient(70deg, #002366, #003f87); /* Darker gradient */
    color: white;
    position: relative;
    flex-direction: column;
}

.top-container .c-name {
    margin-top: 20px;
}

.top-container .bottom-cut {
    height: 40px;
    width: 100%;
    background-color: white;
    position: absolute;
    bottom: 0;
    border-radius: 30px 30px 0 0;
}

.container {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    max-width: 400px;
    margin: 0 auto;
}

.container .offer-details {
    display: flex;
    align-items: center;
}

.container .offer-details img {
    height: 65px;
    width: 65px;
    border-radius: 10px;
    margin-right: 10px;
}

.container .offer-details .oname {
    font-size: 1.1em;
    font-weight: 500;
}

.container .offer-details p {
    font-size: 0.8em;
    font-weight: bold;
    color: #bebcbc;
    margin-top: 4px;
}

.container .step-details {
    margin-top: 30px;
}

.container .step-details.no-margin {
    margin: 0;
}

.container .step-details span {
    font-weight: 500;
}

.container .step-details strong {
    color: #002366; /* Dark Royal Blue */
    font-weight: 600;
}

.container .step-details p {
    font-size: 0.9em;
    margin-top: 3px;
    color: #bebcbc;
}

form {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 30px;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.input-group label {
    font-weight: bold;
    font-size: 0.9em;
    color: #777373;
    margin-bottom: 8px;
}

.input-group input,
select {
    padding: 12px 16px;
    box-sizing: border-box;
    width: 100%;
    border-radius: 10px;
    border: 2px solid #e4e4e4;
    outline: none;
    transition: 0.3s linear;
}

.input-group .error {
    margin-top: 4px;
    font-size: 0.8em;
    color: rgb(230, 81, 81);
    font-weight: bold;
    display: none;
}

.input-group .error.show {
    display: block;
}

.input-group input.inp-error,
.input-group select.inp-error {
    border-color: rgb(230, 81, 81);
}

.input-group input.inp-error:focus,
.input-group select.inp-error:focus {
    border-color: rgb(230, 81, 81);
}

select {
    padding: 12px 10px;
}

.input-group input:focus,
select:focus {
    border-color: #002366; /* Dark Royal Blue */
}

form button,
.refer-link-container button {
    max-width: max-content;
    border: none;
    outline: none;
    background: linear-gradient(70deg, #002366, #003f87); /* Darker gradient */
    color: white;
    border-radius: 10px;
    padding: 10px 12px;
    box-sizing: border-box;
    box-shadow: 0 0 5px 1px #002366; /* Shadow updated */
}

form button i,
.refer-link-container button i {
    margin-left: 5px;
}

.container .divider {
    color: #bebcbc;
    font-size: 0.9em;
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .divider::before {
    content: '';
    height: 2px;
    background-color: #e4e4e4;
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, 0);
}

.container .divider::after {
    content: '';
    height: 2px;
    background-color: #e4e4e4;
    width: 100%;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translate(-50%, 0);
}

.container .divider .divider-text {
    position: relative;
    background-color: white;
    z-index: 1;
    max-width: max-content;
    padding: 0 10px;
    box-sizing: border-box;
    color: green; /* Amount will be green */
}

.container .steps {
    padding: 0;
    list-style: none;
    margin-top: 20px;
    color: #bebcbc;
    font-size: 0.9em;
    margin-bottom: 55px;
}

.container .steps li {
    margin-bottom: 7px;
}

.container .steps li::before {
    content: '';
}

.container .steps li:nth-child(1):before {
    content: '1.';
    margin-right: 10px;
}

.container .steps li:nth-child(2):before {
    content: '2.';
    margin-right: 10px;
}

.container .steps li:nth-child(3):before {
    content: '3.';
    margin-right: 10px;
}

.container .steps li:nth-child(4):before {
    content: '4.';
    margin-right: 10px;
}

.container .steps li:nth-child(5):before {
    content: '5.';
    margin-right: 10px;
}

.container .steps li:nth-child(6):before {
    content: '6.';
    margin-right: 10px;
}

.container .steps li:nth-child(7):before {
    content: '7.';
    margin-right: 10px;
}

.container .steps li:nth-child(8):before {
    content: '8.';
    margin-right: 10px;
}

.container .steps li:nth-child(9):before {
    content: '9.';
    margin-right: 10px;
}

.container .steps li:nth-child(10):before {
    content: '10.';
    margin-right: 10px;
}

.footer {
    padding: 13px 20px;
    background: linear-gradient(70deg, #002366, #003f87); /* Darker gradient */
    color: white;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    box-shadow: 0 0 4px 1px #002366; /* Shadow updated */
}

.divider-normal {
    height: 2px;
    width: 100%;
    background-color: #e4e4e4;
}

.refer-link-container {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 30px;
}

.r-e-banner {
    height: 180px;
    width: 100%;
    margin-top: 30px;
}
