@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto Condensed", sans-serif;
}

button,
a {
    cursor: pointer;
}

.login {
    width: 100%;
    background-image: linear-gradient(#1a3da6, #0f2462);
    display: flex;
    justify-content: center;
    height: 100vh;
}

.box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 315px;
    max-width: 90%;
    margin: 15% auto;

}

.logo-box {
    max-width: 52%;
    width: 100%;
    margin: 0 auto 15px;
}

.form-box {
    background-color: #fff;
    border-radius: .2rem;
    padding: 15px 20px;
}

.form-box h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #0f2462;
    margin-bottom: .5rem;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

.form-box .input-field {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.form-box .input-field img {
    position: absolute;
    right: 10px;
    top: 10px;
}

.form-box .input-field input {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-box .input-field input:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

.form-box .btn-box button {
    width: 100%;
    display: block;
    color: #fff;
    background-color: #0f2462;
    font-weight: 400;
    text-align: center;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    margin-bottom: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-box .btn-box button:last-child {
    margin-bottom: 0rem;
}

.form-box .btn-box button img {
    float: right;
}

small {
    font-size: 13px;
    font-weight: 400;
}

small a {
    color: #007bff;
}

a {
    text-decoration: none;

}

a:hover {
    text-decoration: underline;
}

a.email {
    display: block;
    line-height: 2;
    text-align: center;
    margin-top: .25rem !important;
    color: #007bff;
    background-color: transparent;
}


.social-box {
    display: flex;
    justify-content: center;
    text-align: center;
    border-top: 1px dashed #0f2462;
    margin-top: 10px;
    padding-top: 5px;
}

.social-box>a {
    text-decoration: none;
    align-items: center;
    margin: 0 3%;
    color: #000;
    display: flex;
    justify-content: center;
}

.social-box>a>span {
    font-size: 14px;
    font-weight: 900;
    margin-left: 5px;
    color: #000;
    text-transform: uppercase;
}

.loginText {
    text-align: center;
    font-size: 17px;
    color: #111;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}





/* Info Section */
.info-section {
    background-color: #111;
    color: #ddd;
    text-align: center;
    padding: 70px 20px;
    line-height: 1.8;
}

.info-section h2 {
    color: #f0b000;
    font-size: 1.9em;
    margin-bottom: 20px;
}

.info-section p {
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 1em;
    color: #ccc;
}

.info-section b {
    color: #f0b000;
}

.cta-btn {
    background-color: #f0b000;
    color: #111;
    border: none;
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background-color: #d89d00;
    transform: scale(1.05);
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #00ff47;
    color: #000;
    padding: 12px 20px;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 999;
}

.whatsapp-btn:hover {
    background: #00cc3a;
}


/* Section 1 - What is Cricbet99 */
.what-is-section {
    background-color: #f6c93b;
    color: #000;
}

.what-is-section h2 {
    color: #000;
    font-weight: bold;
}

/* Section 2 - Why Choose Cricbet99 */
.why-section {
    background-color: #000;
    color: #fff;
}

.feature-box {
    background-color: #111;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.4);
}

/* Guide Section */
.guide-section {
    background-color: #f6c93b;
    color: #000;
}

.guide-section h2 {
    color: #000;
    font-weight: 700;
}

.guide-section ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #111;
}

.guide-section b {
    color: #000;
}

.guide-section img {
    max-width: 100%;
    border-radius: 10px;
}

/* About Section */
.about-section {
    background-color: #0d0d0d;
    color: #fff;
}

.about-section h2 {
    color: #ffcc00;
}

.about-section table {
    background-color: #111;
    border: 1px solid #ffcc00;
}

.about-section th {
    background-color: #1a1a1a;
    color: #ffcc00;
    width: 220px;
}

.about-section td {
    color: #fff;
}


/* Secure Login Box (Enhanced Design) */
.secure-login-box {
    background-color: #0f0f0f;
    border: 2px solid #f0c000;
    border-radius: 10px;
    padding: 25px;
    max-width: 950px;
    margin: 40px auto;
    color: #fff;
    transition: 0.3s ease;
}

.secure-login-box:hover {
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
}

.secure-icon {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
}

.secure-login-box h5 {
    font-size: 1.3em;
}

.secure-login-box ul {
    padding-left: 20px;
    line-height: 1.7;
}

.secure-login-box ul li {
    list-style-type: disc;
    font-size: 1rem;
}

/* Footer Styling */
.footer-section {
    background-color: #0d0d0d;
    color: #ccc;
    font-size: 0.95rem;
    border-top: 1px solid #333;
}

.footer-logo {
    font-size: 1.8rem;
    color: #ffcc00;
    text-shadow: 1px 1px 0 #006699;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    transition: 0.2s ease;
}

.footer-link:hover {
    color: #ffcc00;
    text-decoration: underline;
}

.footer-links {
    color: #888;
    font-size: 0.85rem;
}

.footer-bottom {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-section img {
    filter: brightness(0.95);
}

@media (max-width: 768px) {
    .footer-logo {
        text-align: center;
    }

    .footer-section .col-md-4 {
        text-align: center;
    }
}


#getNewId {
    display: block;
    padding: 10px 49px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 30px;
    color: white;
    background: black;
    width: fit-content;
    margin: 4px auto;
}