/* Basic reset for margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    /*font-family: Arial, sans-serif;*/
    font-family: 'Montserrat', sans-serif;
    background: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Login container */
.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Login form styling */
.login-form {
    text-align: center;
}

/* Logo styling */
.logo img {
    max-width: 190px;
    margin-bottom: 20px;
}

/* Form heading */
h2 {
    margin-bottom: 20px;
    color: #333;
}

/* Input group styling */
.input-group {
    margin-bottom: 15px;
    text-align: left;
}

/* Label styling */
.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

/* Input field styling */
.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Button styling */
.button {
    width: 100%;
    padding: 10px;
    background: #007bff;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.button:hover {
    background: #0056b3;
}

/* Responsive styling */
@media (max-width: 400px) {
    .login-container {
        padding: 15px;
    }
}