body {
    display: flex;
    flex-direction: column;
    align-items: center; /* Keeps content horizontally centered */
    margin: 0;
    background-color: #f2f2f2;
    padding-top: 20px; /* Add some top padding */
    font-family: 'RedditSans', Roboto, Helvetica Neue, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: normal;
}

.logo {
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin-bottom: 5px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

p {
    font-size: 14px;
    font-weight: bold;
    color: #666;
    margin: 0;
    text-align: center;
}

h1 {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

.input-card,
.otp-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 350px;
    margin-bottom: 20px;
}

.input-container,
.otp-container {
    display: flex;
    align-items: center;
    width: 100%;
}

.input-container input,
.otp-container input {
    width: 100%;
    padding: 12px 10px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
}

.country-code {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.country-code img {
    width: 25px;
    height: 25px;
    margin-right: 5px;
}

button {
    background-color: #5a4bda;
    color: white;
    margin: 0 10px; /* Increase space between buttons */
    padding: 12px 18px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    width: 320px;
    transition: background-color 0.3s, box-shadow 0.3s;
    margin-top: 10px;
}

button:disabled {
    background-color: #b8b8b8;
    cursor: not-allowed;
    box-shadow: 0 4px 10px rgba(160, 32, 240, 0.2);
}

button:hover:enabled {
    background-color: #4b3fb3;
    box-shadow: none;
}

.alert {
    display: none;
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
}

.alert.success,
.alert.error {
    display: none;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 350px;
    margin-bottom: 20px;
}

.alert.success {
    color: #155724;
}

.alert.error {
    color: #721c24;
}

.hidden {
    display: none;
}

.custom-font {
    font-family: 'RedditSans', Roboto, Helvetica Neue, sans-serif;
    font-weight: 400;
    font-size: 27px;
    line-height: 40px;
    letter-spacing: normal;
}

.custom-enter_mob_text-font {
    font-family: 'RedditSans', Roboto, Helvetica Neue, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 40px;
    letter-spacing: normal;
}

.custom-font-input {
    font-family: 'RedditSans', Roboto, Helvetica Neue, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: normal;
    
}

/* Footer styles */
footer {
    position: absolute;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-logo {
    width: 25px;
    height: 25px;
    opacity: 0;
    animation: typewriterLogo 3s steps(8) forwards;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-text {
    font-family: 'Pacifico', sans-serif;
    font-size: 20px;
    color: #5a4bda;
    margin-bottom: 5px;
    opacity: 0;
    animation: typewriterText 1s steps(10) forwards;
    display: inline-block;
    margin-right: 5px;
}

.footer-name h2 {
    font-family: 'Pacifico', sans-serif;
    color: #5a4bda;
    margin: 0;
    font-size: 24px;
    opacity: 0;
    animation: typewriterName 1s steps(6) forwards;
}

@keyframes typewriterLogo {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes typewriterText {
    from {
        width: 0;
        opacity: 1;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

@keyframes typewriterName {
    from {
        width: 0;
        opacity: 1;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}
