/* Main background image */
.LoginBody{
    background-image: url(images/HomeScreenBackground.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
}

/* Template for the main content */
.template{
    width: 40%;
    Background-color: rgb(255, 255, 255);
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    margin-bottom: 80px;
    border: 10px solid rgb(0, 0, 0);
    border-radius: 30px;
}

/* Welcome text */
.line1{
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 3rem;
    font-family: Arial;
    margin-bottom: 10px;
}

/* Image of an Avatar for login page */
.loginImage{
    background-image: url(images/Avatar.jpg);
    background-size: contain;
    width: 150px;
    height: 150px;
    margin: auto;
    margin-bottom: 15px;
    margin-top: 0px;
}

/* Give position and margin for the containers */
.inputContainers{
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

/* Style the input fields */
.inputContainers input {
    width: 80%;
    padding: 12px 15px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    outline: none;
}

/* Add focus effect */
.inputContainers input:focus {
    box-shadow: 0 0 0 2px #000000;
}

.showPasswordLabel{
    display: flex;
    justify-content: center;
    margin: 15px;
    font-size: 1rem;
    font-family: Arial, sans-serif;
}

.buttons{
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    height: 40px;
}

.buttons button{
    background-color: rgb(0, 0, 0);
    color: white;
    border-radius: 15px;
    padding: 0px 130px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    /* Time for color to change when hover. */
    transition: background-color 0.3s ease;
}

/* Color change when hover over button. */
.buttons button:hover {
    background-color: #414141;
}

