/* Lookup page specific styles */

body {
    background: linear-gradient(135deg, #3b913b 0%, #1C451C 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 500px;
    width: 100%;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b913b 0%, #1C451C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

h1 {
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

input[type="text"] {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    font-size: 16px;
}

.submit-btn {
    width: 100%;
}

.info-box {
    background: #f8f9fa;
    border-left: 4px solid #3b913b;
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
}

.info-box p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
