* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body {
    background-color: orange;
    font-family: 'Arial', sans-serif;
}

form {
    
    border: none;
    border-radius: 10px;
    width: 360px;
    background-color: #ffffff;
    margin: 100px auto;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 200px; /* Adjust based on actual logo size */
    margin-bottom: 20px;
}

input[type="text"],
input[type="password"] {
    width: calc(100% - 20px);
    height: 40px;
    margin-bottom: 20px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    padding: 0 10px;
    font-size: 16px;
    color: #333;
    background-color: #e8e8e8; /* Light grey background */
}

.button {
    width: 60%;
    height: 48px;
    background-color: #4e73df;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    margin-top: 10px;
}

.button:hover {
    background-color: #5a80df;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

a {
	font: 14px arial, sans-serif;
	text-decoration:none;
	padding: 20px;
}
a:hover{
	font: 14px arial, sans-serif;
	text-decoration:underline;
}
form:hover {
    transform: scale(1.05); /* Scales up the form to 105% of its original size */
    transition: transform 0.3s ease-in-out; /* Smooth transition for the transform effect */
}
