*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scrollbar-width: none;
}

body {
    min-height: 100vh;
    background-color: #153317;
    background-image: url(../imgs/Texture.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
}
.container {
    width: 100%;
    min-width: 350px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}
.container header {
    width: 100%;
    height: 75px;
    padding: 10px 20%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
}
header img {
    width: 35px;
}
.page {
    width: 100%;
    max-width: 350px;
    height: 100%;
    padding: 25px 10px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
.page > h2 {
    margin-bottom: 20px;
}
#log-in {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#log-in * {
    margin-bottom: 15px;
}
#error {
    color: red;
    font-weight: bold;
}
.inp {
    width: 100%;
    height: 35px;
    padding: 5px 15px;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    margin-bottom: 20px;
}
.btn {
    width: 120px;
    padding: 5px 15px;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
}
.btn, .home-btn {
    transition: transform 0.5s;
}
.btn:hover, .home-btn:hover {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}
.home-container {
    text-align: center;
}
.home-container > * {
    margin-bottom: 20px;
}
.home-btn {
    width: 200px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}
#clients-container {
    width: 100%;
}
.client-header {
    display: flex;
    width: 100%;
}
.client-header * {
    width: 100%;
}
#clients-container .client {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 15px;
    text-align: right;
}
.client:hover {
    cursor: pointer;
}
.client h3 {
    font-size: 20px;
}
.client p , .client .client-header {
    margin-bottom: 10px;
    border-bottom: 1px solid white;
}
#ad-client {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.edit-inp {
    width: 100%;
    border: 1px solid white;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 10px;
    padding: 5px 10px;
    margin-bottom: 10px;
}
.hidden {
    display: none;
}
.hide {
    display: none;
}

.edit-container {
    min-width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
}
.edit-container form {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #333f34;
    padding: 25px;
    border-radius: 25px;
}
.edit-container form h2 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
}
.edit-btn {
    max-height: 30px;
}