 /* Basic styling for the form */
 .form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #2D3E50;
    /* color: white; */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 20px rgba(34, 30, 31, 0.4);
}
.form-container button{
    background-color: #2D3E50;
}
.form-group {
    margin-bottom: 15px;
}
label {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: bold;
}
/* form-container textarea{
    width: 100%;
    padding: 8px;
    font-size: 16px;
    border: 1px white;
    border-radius: 4px;
    color:#2D3E50; */
/* } */
select{
    width: 100%;
    padding: 8px;
    font-size: 16px;
    border: 1px solid white;
    border-radius: 4px;
    color:#2D3E50;
}
option{
    color:#2D3E50; 
}
textarea{
    color: #2D3E50;
    max-width: 100%;
}

form-container
textarea, 
input[type="textarea"], 
input[type="number"], 
input[type="email"], 
input[type="file"], 
input[type="text"] {
    width: 100%;
    padding: 8px;
    font-size: 16px;
    border: 1px solid white;
    border-radius: 4px;
    color:#2D3E50;
    background-color: white;
  
}
form-container button {
    background-color: #4CAF50;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
form-container button:hover {
    background-color: #45a049;
    box-shadow: 0 2px 20px rgba(34, 30, 31, 0.4);
}

.togetherFom{
   
    display: flex;
}

#competition2, #competition-teacher-no{
    margin-left: 40px;
}




/* start */
body {
    font-family: Arial, sans-serif;
    /* background: linear-gradient(135deg, #f0f0f0, #e0e0e0); */
    margin: 0;
    /* padding: 20px; */
    /* display: flex;
    justify-content: center;
    align-items: center;  */
    /* height: 100vh; */
    /* overflow: hidden; */

    
}
.cardboday{
    margin-top: 25px;
    /* background-color: cyan; */
}

.card {
   
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: auto;
    margin-top: 0;
    padding: 20px;
    transform: translateY(-30px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 14px; /* Smaller text */
    line-height: 1.2; /* Adjusted for readability */
}

.card:hover {
    transform: translateY(-40px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card h2 {
    color: #2c3e50;
    font-size: 22px; /* Smaller heading size */
    text-align: center;
    margin-bottom: 18px;
}

.card p {
    color: #34495e;
    margin-bottom: 12px;
}

.card ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.card ul li {
    background: #ecf0f1;
    margin: 8px 0;
    padding: 8px;
    border-radius: 8px;
    font-size: 13px; /* Smaller list text */
}

.card a {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 10px 15px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px; /* Smaller button text */
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.card a:hover {
    background-color: #2980b9;
}

.card h3 {
    font-size: 18px; /* Smaller subheading size */
    color: #2c3e50;
    margin-bottom: 12px;
}