@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

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

body {
    background: linear-gradient(180deg, #7a4a00 0%, #6b4400 25%, #3d5c2a 65%, #1a3d1a 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    font-weight: 300;
}

.logo-container {
    margin-bottom: 0;
    text-align: center;
}

#main-logo {
    max-height: 68px !important;
    width: auto;
}

.logo-text {
    font-family: 'Arial Black', Impact, sans-serif;
    font-size: 42px;
    color: #4dc4f3;
    -webkit-text-stroke: 1.5px #ffcc00;
    text-shadow: 
        1px 1px 0 #125574,
        2px 2px 0 #125574,
        3px 3px 0 #125574,
        4px 4px 0 #125574,
        5px 5px 0 #000,
        0px 0px 10px rgba(0,0,0,0.5);
    letter-spacing: 1px;
    margin: 0;
}

.logo-text span {
    color: #ffd700;
    -webkit-text-stroke: 1px #000;
}

/* Login Box */
.login-box {
    background-color: white;
    width: 82%;
    max-width: 340px;
    border-radius: 8px;
    padding: 15px 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    margin: 0 auto 20px auto;
}

/* Hand bounce animation */
@keyframes handBounce {
    0%   { transform: translateX(0px); }
    25%  { transform: translateX(10px); }
    50%  { transform: translateX(0px); }
    75%  { transform: translateX(-10px); }
    100% { transform: translateX(0px); }
}

.hand-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    animation: handBounce 1.2s ease-in-out infinite;
    display: inline-block;
    vertical-align: middle;
    margin: 8px auto 4px auto;
    display: block;
}

.hand-icon-footer {
    width: 38px;
    height: 38px;
    object-fit: contain;
    animation: handBounce 1s ease-in-out infinite;
    flex-shrink: 0;
}

.login-title {
    text-align: center;
    color: #8c5a1a;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 500;
}

.point-down {
    color: #8c5a1a;
}

/* Inputs */
.input-group {
    position: relative;
    margin-bottom: 10px;
}

.input-group input {
    width: 100%;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    font-size: 16px; /* 16px+ prevents iOS auto-zoom */
    color: #555;
    outline: none;
    font-weight: 300;
    background: transparent;
}

.input-group input:focus {
    border-color: #8c5a1a;
}

/* Verify Page Styles */
.verify-title {
    text-align: center;
    color: #222;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
}

.verify-input-group {
    margin-bottom: 0px !important;
}

.verify-input-group input {
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    padding: 12px !important;
    background: #fff !important;
    text-align: center;
}

.verify-helper {
    font-size: 11px;
    color: #666;
    text-align: center;
    margin-top: 6px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.input-group .icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
}

/* Buttons */
.btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    color: white;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.btn:hover {
    opacity: 0.9;
}

.btn-brown {
    background-color: #6b3a00;
}

.btn-yellow {
    background: linear-gradient(180deg, #d4a929 0%, #a87e14 100%);
    color: #111;
    font-weight: 600;
    border-radius: 6px;
    font-size: 15px;
    padding: 12px;
}

.btn-green {
    background-color: #8c5a1a;
}

.btn-brown-dark {
    background-color: #a45a16;
    padding: 15px;
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Divider */
.divider {
    text-align: center;
    position: relative;
    margin: 10px 0;
}

.divider::before, .divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: #8c5a1a;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    color: #000;
    font-size: 13px;
    font-weight: bold;
    background: #fff;
    padding: 0 10px;
}

.whatsapp-prompt {
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-img-box {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
}

.feature-img-box img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    opacity: 0.8; 
}

.feature-text {
    font-size: 12px;
    line-height: 1.2;
    color: #333;
    text-align: left;
}

.whatsapp-btn {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    font-weight: 500;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.footer-text {
    text-align: center;
    font-size: 12px;
    color: #000;
    margin-top: 15px;
    line-height: 1.4;
    padding-bottom: 15px;
    border-bottom: 1px dashed #d1b894;
}

.footer-text a {
    color: #007bff;
    text-decoration: none;
}

.email-link {
    font-size: 16px;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
}

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

.point-right {
    font-size: 20px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.social-link {
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-link.instagram {
    color: #c13584;
}

.social-link.telegram {
    color: #0088cc;
}

.verify-title {
    text-align: center;
    color: #8c5a1a;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
}

.verify-input-group {
    margin-bottom: 0px !important;
}

.verify-input-group input {
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    padding: 12px !important;
    background: #fff !important;
    text-align: center;
    font-size: 16px !important; /* iOS zoom fix */
    font-weight: 500;
    color: #333;
}

.verify-helper {
    font-size: 11px;
    color: #666;
    text-align: center;
    margin-top: 6px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}
