.login-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    background-image: url('images/IQT_bg.png');
    background-size: cover; 
    background-position: center;
    box-sizing: initial;
}

.login-layout main {
    width: 500px;
    padding: 1rem;
}

.login-layout header {
    margin-bottom: 2rem;
    text-align: center;
}

.container {
    text-align: center;
}

.message {
    font-size: 16px;
    margin-bottom: 10px;
}

.home-link {
    display: block;
    margin-bottom: 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.go-back {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.go-back:hover {
    background-color: #218838;
}

.custom-alert {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(255, 0, 0, 0.2);
    color: darkred;
    padding: 10px 20px;
    border-radius: 4px;
    margin: 8px;
    box-sizing: border-box;
}
