.page {
    width:100%;
    padding:0;
    margin:0;
}

.container {
    margin-left:auto;
    margin-right:auto;
}

.row {
    margin-bottom: 25px;
}

form {
    width:100%;
    padding:40px 20px;
}

footer {
    width:100%;
    padding:0;
}

footer p {
    line-height:1.5;
}

.form-control {
    display: block;
    width: 100%;
    padding: .475rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  }

  form label {
    display: block;
    margin-bottom: 5px;
    font-weight:bold;
  }

/* Countdown Container */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.countdown-item {
    flex: 1;
    max-width: 200px;
    background-color:rgba(27, 85, 226, 0.59);
}

.countdown-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.countdown-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1;
}

.countdown-label {
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .countdown-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .countdown-item {
        max-width: 100%;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
}

form .btn-primary {
    color: #fff !important;
    background-color: #4361ee !important;
    border-color: #4361ee;
    box-shadow: 0 10px 20px -10px rgba(27, 85, 226, 0.59);
    padding: 0.625rem 1.5rem;
    font-size: 16px;
    text-shadow: none;
    color: #3b3f5c;
    font-weight: normal;
    white-space: normal;
    word-wrap: break-word;
    transition: 0.2s ease-out;
    touch-action: manipulation;
    border-radius: 6px;
    cursor: pointer;
    background-color: #e0e6ed;
    will-change: opacity, transform;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    width:100%;
}

#experience {
    min-height: 150px;
    height: auto;
    resize: vertical;
}

.table td {
    padding: 25px 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}
