:root {
    --primary: #16a34a;
    --secondary: #3b82f6;
    --bg: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 100%);
}







.a_style{
    text-decoration: none;
    color: white;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    top:0.5px;
    gap: 0.5rem;
}


.input-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;

}


.input-card {
    display:grid;
    background: #f8fafc;
    border-radius: 1rem;
    padding: 3.3rem;
    border: 2px solid #e5e7eb;
}

.input-card h3 {
    margin-top: 0;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}



.submit-btn:hover,
.submit-btn2:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(22, 163, 74, 0.3);
}

.textarea {
    width: 90%;
    height: 70%;
    padding: 0.8rem;
    border: 2px solid #e5e7eb;
}

.form-control {
    width: 80%;
    padding: 0.8rem;
    margin: 0.5rem 0;
    border: 2px solid #e5e7eb;
    border-radius: 0.8rem;
    font-family: 'Inter', sans-serif;
    display: block;
    background: white;
}
.form-control_r {
    width: 125%;
    padding: 0.8rem;
    margin: 0.5rem 0;
    border: 2px solid #e5e7eb;
    border-radius: 0.8rem;
    font-family: 'Inter', sans-serif;
    display: block;
    background: white;
}



