/* General Styling */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(#71b7e6,#9b59b6);
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h2 {
    text-align: center;
}
.reg{
    color: black;
    font-weight: bolder;
    font-size: 25px;
    position: relative;
}
.reg::after{
    content: " ";
    position: absolute;
    bottom: -5px;
    width: 10%;
    height: 6px;
    left: 0px;
    background: linear-gradient(135deg,#71b7e6,#9b59b6);
}


.container {
    display: flex;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Styling for the login form */
.login-box {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 20px;
}

.login-box form {
    display: flex;
    flex-direction: column;
}

.login-box label {
    margin-bottom: 5px;
    font-weight: bold;
}

.login-box input {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-box input[type="submit"] {
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    padding: 12px;
    transition: background-color 0.3s ease;
}

.login-box input[type="submit"]:hover {
    background-color: #218838;
}

/* Styling for the logo box */
.logo-box {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
