* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('../images/backgroundLoginPage.png') center center/cover no-repeat fixed;
    display: flex;
    justify-content: center;
    align-items: center;

}

.container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-left: 25%;
    margin-right: 25%;
    padding: 20px;
}

.logo {
    text-align: center;
    margin-bottom: 5%;
    margin-top: 10%;
}

.logo img {
    height: 60px;
    width: auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    margin-bottom: 25px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.info-link {
    display: block;
    text-align: center;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-link:hover {
    text-decoration: underline;
}

