/* General Reset */
body, h1, label, input, button, div {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Body Styling */
body {
    background: linear-gradient(135deg, #e0e0e0, #e0e0e0, #e0e0e0);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    color: #333;
}

/* Form Container */
.form-container {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.409);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

/* Images Styling */
.icon-img {
    max-width: 200px;
    border-radius: 8px;
    padding: 10px; 
    margin-bottom: 10px;
}


/* Form Styling */
.form-content {
    text-align: left;
}

.form-header h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #182249;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(74, 110, 255, 0.3);
    text-align: center;
}

/* Labels */
label {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    display: block;
    font-weight: 500;
}

/* Input Fields */
input[type="text"], input[type="email"], input[type="number"], input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #d6e4ff;
    border-radius: 8px;
    background: #f9fcff;
    color: #555;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

input[type="text"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #d6e4ff;
    border-radius: 8px;
    background: #f9fcff;
    color: #555;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

input:focus {
    border-color: #4a6eff;
    background: #f1f6ff;
    box-shadow: 0 0 10px rgba(74, 110, 255, 0.3);
}

select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #d6e4ff;
    border-radius: 8px;
    background: #f9fcff;
    color: #555;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="gray" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
}

select:focus {
    border-color: #4a6eff;
    background: #f1f6ff;
    box-shadow: 0 0 10px rgba(74, 110, 255, 0.3);
    outline: none;
}


input::placeholder {
    color: #aaa;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(90deg, #4a6eff, #1a43b8);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(74, 110, 255, 0.2);
}

.submit-btn:hover {
    background: linear-gradient(90deg, #3a57d1, #0e2f92);
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(74, 110, 255, 0.4);
}

/* Alerts */
.alert, .filealert {
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.alert {
    background: #ff6b6b;
    color: #fff;
}

.filealert {
    background: #ffeaa7;
    color: #333;
}
