﻿.search-container {
    display: flex;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    justify-content: center;
}

.search-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.depa-grp-logo {
    height: 90px;
}

.search-logo {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.search-form {
    width: 550px;
    background-color: white;
    border-radius: 10px;
    margin-top: 50px;
    padding: 30px;
    margin-bottom: 50px;
}

.log-errmsg {
    color: darkred;
    font-size: 14px;
}

.search-button {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #333;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
    width: 100%;
    max-width: 400px;
    margin: 40px auto;
}

.search-button button {
    width: 100%;
}

.search-button-grp {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #333;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
    width: 100%;
    max-width: 400px;
    margin: 15px auto;
}

.search-button-grp button {
    width: 100%;
}

.search-register-text {
    margin-top: 50px;
    text-align: center;
}

.search-footer {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    font-size: 14px;
    align-items: center;
}

.search-form-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 0px 20px 0px;
    font-weight: 500;
    font-size: 22px;
}

.app-item {
    margin-bottom: 10px;
}

.app-info-key {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 0px 10px 0px;
}

.app-info-value {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px 10px 5px 10px;
    border: 1px solid lightgray;
    border-radius: 5px;
    align-items: flex-start;
    background-color: #f7f7f7;
}

.app-info-value.danger {
    border: 1px solid #edb2b2;
    background-color: #ffebeb;
}

.app-info-value.success {
    border: 1px solid #b3edb2;
    background-color: #e4fbe9;
}

.app-info-value.warning {
    border: 1px solid #edc99f;
    background-color: #ffe7ab;
}

.app-info-status {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
}

@media (max-width: 450px) {
    .search-form {
        width: 350px;
    }

    .search-button button {
        width: 290px;
    }
}

@media (max-width: 380px) {
    .search-form {
        width: 300px;
        margin-bottom: 100px;
    }

    .search-button button {
        width: 240px;
    }

    .search-logo {
        margin-top: 15px;
    }

    .search-form-header {
        font-size: 18px;
    }

    .app-info-key {
        font-size: 14px;
    }

    .app-info-value {
        font-size: 14px;
    }
}
