:root {
    --primary-gradient: linear-gradient(180deg, #0d2137 0%, #20436d 45%, #f4f7f9 100%);
    --login-btn-bg: #106236;
    --demo-btn-bg: #0b2a4a;
    --input-border: #dcdfe6;
    --text-main: #333;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    background: var(--primary-gradient);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 60px;
}

.logo-container {
    margin-bottom: 15px;
    text-align: center;
    max-width: 280px;
}

.logo-container img {
    width: 100%;
    height: auto;
}

.login-card {
    background: #ffffff;
    width: 90%;
    max-width: 380px;
    border-radius: 4px;
    padding: 35px 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group input {
    width: 100%;
    height: 45px;
    padding: 0 40px 0 15px;
    border: 1px solid var(--input-border);
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input::placeholder {
    color: #ccc;
    text-transform: uppercase;
    font-weight: 500;
}

.form-group input:focus {
    border-color: #0b2a4a;
}

.form-group .field-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    font-size: 14px;
}

.login-btn {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    transition: opacity 0.2s;
}

.btn-green {
    background: var(--login-btn-bg);
}

.btn-blue {
    background: var(--demo-btn-bg);
    margin-top: 15px;
}

.login-btn:hover {
    opacity: 0.9;
}

.footer-note {
    margin-top: 25px;
    font-size: 10px;
    color: #d93025;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

/* Adjusting intl-tel-input to look like a standard field */
.iti {
    width: 100%;
}

/* .iti__flag-container {
    display: none;
} */

.iti--separate-dial-code {
    width: 100%;
}

/* Hide flags for now to match screenshot */
.form-group input#mobile {
    padding-left: 15px;
}