 *
 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 }
 
 /* General Styling */
 body {
    background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;           
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-page {
    background: #ffffff;
    border-radius: 20px !important;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 360px;
    padding: 20px;
    text-align: center;
}

.form img.indexlogo{
    margin: 0;
    /* margin-top: -80px; */
    /* height: 180px !important; */
    width: 160px !important;
    /* border:2px solid black; */
    /* margin-left: -30px; */
}

.form h3.heading {
    font-size: 1.7em;
    color: #333;
    font-weight: 550;
    margin-bottom: 10px;
}

.form input.input1, 
.form select {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.form input.input1:focus, 
.form select:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5);
}

.form button {
    background: #4CAF50;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    width: 90%;
    font-weight: bold;
    letter-spacing: 1px; 
    text-transform: uppercase;
    transition: background-color 0.3s ease-in-out;
}

.form button:hover {
    background: #43A047;
}

.form p.error, 
.form p.success {
    font-size: 14px;
    margin: 10px 0;
}

.form p.error {
    color: #ff4d4d;
}

.form p.success {
    color: #28a745;
}