:root {
  --bg-color: #f8f9fa;
  --primary: rgba(32, 77, 47, 1);
  --secondary: rgb(230, 182, 53);
  --Neutral-Accent: #64748b;
  --Accent-color: rgba(230, 182, 53, 0.8);
  --light-accent: #e2e8f0;
  --font: "Inter", serif;
  --logo-font: "Bebas Neue", serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 10px rgba(37, 99, 235, 0.15);
  --radius: 10px;
}

body {
  font-family: var(--font);
  background-color: var(--bg-color);
  color: var(--primary);
  line-height: 1.6;
}

.callforpapers{
    margin-top: 5rem;
    padding: 3rem 5%;
}

/* Adjustments for the submission form */
.submission-form {
    background-color: var(--focus-bg);
    padding: 2rem;
    border-radius: 16px;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    user-select: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.submission-form h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 2rem;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

form input, form select, form button {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border: 1px solid var(--Neutral-Accent);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--primary);
    /* background-color: var(--secondary); */
}

form input:focus, form select:focus {
    outline: none;
    border-color: var(--Accent-color);
}

form button {
    background-color: var(--primary);
    color: var(--secondary);
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.5s ease;
}

form button:hover {
    background-color: var(--Accent-color);
    color: var(--primary);
}


/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  .callforpapers, .submission-form {
    animation: fadeIn 1s ease-in-out;
  }
  

@media (max-width: 468px){
    .callforpapers{
        padding: 3rem 5%;
    }
}



/* MODAL*/

.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Black with opacity */
  }
  
  .modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    color: #000;
    width: 80%;
    max-width: 400px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
  }
  

  .modal-icon {
    font-size: 40px;
    margin-bottom: 10px;
  }
  
  .modal-icon.success {
    color: #4caf50; /* Green for success */
  }
  
  .modal-icon.error {
    color: #f44336; /* Red for error */
  }
  