* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    height: 100vh;
    background: url('/images/pattern.png');
    background-size: 600px;
    background-repeat: repeat;
}

.signup-container {
    margin-top: 150px;
    margin-bottom: 150px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.signup-box {
    background: #d7e0c5;
    padding: 15px;
    border-radius: 10px;
    width: 60%;
    margin-left: 40px;

}

.signup-box h2 {
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 20px;
}

.signup-box label {
    display: block;
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 12px;
}

.signup-box input {
    width: 100%;
    padding: 6px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 12px;
}

.signup-box button {
    width: 100%;
    padding: 8px;
    background-color: #143109;
    border: none;
    color: white;
    font-size: 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.signup-box button:hover {
    background-color: #142109;
}

.GoogleSignin {
    width: 100%;
    padding: 8px;
    background-color: #143109;
    border: none;
    color: white;
    font-size: 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.branding {
    margin-left: 20px;
    text-align: center;
}

.branding img {
    width: 180px;
    margin-bottom: 10px;
    margin-left: 50px;
}

a {
    color: #143109;
}

.terms-notice {
    font-size: 11px;
    color: #333;
    margin-bottom: 12px;
    margin-top: 12px;
    text-align: center;
    line-height: 1.4;
}

.terms-notice a {
    color: #143109;
    text-decoration: underline;
    font-weight: 500;
}

footer {
    width: 100vw;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #143109;
    font-size: 14px;
    margin-bottom: 20px;
}

.divider hr {
    flex: 1;
    border: none;
    border-top: 1px solid #ccc;
    margin: 0 10px;
}

#inAppBrowserModal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#inAppBrowserModal .modal-box {
    border: solid #143109 2px;
    background-color: #b5bfa1;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 400px;
    font-family: 'Montserrat', sans-serif;
}

#inAppBrowserModal .modal-box h2 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 0.75rem;
}

#inAppBrowserModal .modal-box p {
    color: #143109;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

#inAppBrowserModal .modal-box a {
    display: inline-block;
    background-color: #143109;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

#inAppBrowserModal .modal-box a:hover {
    background-color: #1a410d;
}


@media (max-width: 430px) {
    .signup-container {
        flex-direction: column;
        width: 90%;
        padding: 20px;
    }

    .signup-box {
        margin-left: 0;
        margin-bottom: 20px;
        width: 100%;
    }

    .branding img {
        width: 150px;
        margin: 0;
    }
}