﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    
    background-color:steelblue;
    color: white;
    padding: 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 6em;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2em;
}

    nav ul li {
        background-color: cornflowerblue;
        padding: 0.6em 1.3em;
        border-radius: 4px;
    }

main {
    display: flex;
    justify-content: right;
    align-items: center;
    height: calc(100vh - 6em);  
    background-image:url('Image/Picsart_24-03-20_18-08-35-525.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.login-container {
    background-color: steelblue;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    margin-right: 3em;
}

h2 {
    text-align: center;
}

.input-group {
    margin-bottom: 20px;
}

    .input-group label {
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .input-group input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

button {
    width: 100%;
    padding: 10px;
    /*background-color: #007bff;*/
    background-color:cornflowerblue;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

header ul li:hover {
    cursor: pointer;
}

header ul li:active {
    background-color: red;
}


    button:hover {
        background-color: #0056b3;
    }
.button-link {
    background-color: cornflowerblue;
    padding: 0.6em 1.1em;
    border-radius: 4px;
    color: white;
    text-decoration: none;
}

    .button-link:hover {
        background-color: #0056b3;
    }

    .button-link:active {
        background-color: red;
    }
