body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #153276;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../assets/login-page/Background.jpg');
    background-size: cover;
}

.container {
    text-align: center;
}

.logo img {
    margin-top: 50px;
    height: 84px;
    width: 150px;
    margin-bottom: 20px;
}

.content {
    max-width: 400px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

h2 {
    font-size: 1.5rem;
}

.login-form{
    display: inline-block;
}
.input-group {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-group img {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}


input[type="text"], input[type="password"] {
    width: 460px;
    height: 50px;
    padding-left: 35px;
    border: none;
    border-radius: 4px !important;
    font-size: 1rem;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #1d65ea;
    color: white;
    font-size: 1.2rem;
}

button:hover {
    background-color: #164bb2;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.options a {
    color: #1d65ea;
    text-decoration: none;
}

.sign-up p {
    margin-top: 20px;
}

.sign-up a {
    color: #1d65ea;
    text-decoration: none;
    font-weight: bold;
}

.sign-up a:hover, .options a:hover {
    text-decoration: underline;
}


