* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #acb2e9;
    display: flexbox;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

header {
    background-color: #07ccbc;
    padding: 20px;
    height: 110px;
    position: absolute;
    top: 0;
}

.navbar {
    display: flex;
    justify-content: left;
    align-items: left;
    max-width: 1200px;
    padding: 0px;
}

.logo img {
    width: 100px;
}

.brand h1 {
    text-align: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.login-container {
    height: auto;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.textbox {
    margin-bottom: 20px;
}

.textbox input {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.textbox input:focus {
    border-color: #5c6bc0;
    outline: none;
}

.btn {
    width: 100%;
    padding: 10px;
    background-color: #5c6bc0;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.btn:hover {
    background-color: #4e5b9e;
}
