* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-image: url('bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 30px;
}

.logo {
    margin-bottom: 20px;
}

.logo img {
    max-width: 300px;
    height: auto;
}

h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.validator-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.phone-validator-container {
    flex: 1;
}

.verify-form {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
}

.verify-form input {
    font-family: inherit;
    font-size: 16px;
    padding: 16px 24px;
    border-radius: 6px;
    border: 1px solid #ddd;
    width: 100%;
}

/* Remove spinner buttons from number input */
.verify-form input[type="number"]::-webkit-inner-spin-button,
.verify-form input[type="number"]::-webkit-outer-spin-button,
.verify-form input[type="tel"]::-webkit-inner-spin-button,
.verify-form input[type="tel"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.verify-form input[type="number"],
.verify-form input[type="tel"] {
    -moz-appearance: textfield;
}

.verify-form button {
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 16px 24px;
    border-radius: 6px;
    border: none;
    background: #81DF6C;
    color: #202020;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 200px;
}

.verify-form button:hover {
    background: #6ac756;
}

.response {
    font-size: 24px;
    font-weight: 700;
    margin-top: 16px;
    line-height: 1.2;
    text-align: center;
}

.response span {
    font-size: 0.7em;
    font-weight: 400;
    line-height: 1;
    display: block;
    margin-top: 16px;
}

.image-container {
    flex: 1;
    text-align: center;
}

.person-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
}

footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

footer p {
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .validator-container {
        flex-direction: column;
    }
    
    .verify-form {
        flex-direction: column;
    }

    .verify-form input,
    .verify-form button {
        width: 100%;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 16px;
    }
}