/* Consolidated CSS File for Scriptcase Project */

/*
Order of Rules:
1. General Resets and Global Styles
2. Utility Classes
3. Specific Component Styles
*/

/*------------------------------------------------
[ General Resets ]
------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Anchor Tags */
a {
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    text-decoration: none;
    transition: all 0.4s;
}
a:hover {
    color: #fff;
}

/* Buttons */
button {
    outline: none;
    border: none;
    background: transparent;
    cursor: pointer;
}
button:hover {
    cursor: pointer;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}
p {
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/*------------------------------------------------
[ Utility Classes ]
------------------------------------------------*/
/* Padding */
.p-t-20 { padding-top: 20px; }
.p-b-20 { padding-bottom: 20px; }
.p-l-20 { padding-left: 20px; }
.p-r-20 { padding-right: 20px; }

/* Font Size */
.fs-12 { font-size: 12px; }
.fs-14 { font-size: 14px; }
.fs-16 { font-size: 16px; }

/* Other Utilities */
.text-center { text-align: center; }
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*------------------------------------------------
[ Components Styles ]
------------------------------------------------*/
/* System Select Container */
.system-select-container {
    display: flex;
    flex-direction: column;
    align-items: center;
	width: 480px;
    justify-content: center;
    padding: 30px;
    /*background: linear-gradient(180deg, rgba(180, 50, 80, 0.9), rgba(200, 80, 110, 0.9));*/
	background: linear-gradient(180deg, rgba(129, 2, 4, 0.9), rgba(200, 80, 110, 0.9));
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

.system-select-container span {
    margin-bottom: 20px; /* Adds space below "Selecione o Sistema" */
}

.system-button {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 450px;
    padding: 15px;
    background-color: #4694d6;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
	transition: all 0.3s ease;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.system-button img {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
    flex-shrink: 0;
}

.system-button:hover img {
    filter: brightness(1.5) sepia(1) saturate(5) hue-rotate(60deg);
	transform: scale(1.1); /* Aumenta ligeiramente a imagem no hover */
    transition: transform 0.3s ease;
}

.system-select-container .system-logo {
    margin-top: 30px; /* Adds space above the logo */
    text-align: center; /* Centraliza o conteúdo da div */
    transition: transform 0.3s ease; /* Suave transição para transformações */
}

.system-select-container .system-logo:hover {
    transform: scale(1.05); /* Aumenta levemente o tamanho da div ao passar o mouse */
}

.system-select-container .system-logo img {
    transition: opacity 0.3s ease; /* Suave transição para opacidade */
}

.system-select-container .system-logo img:hover {
    opacity: 0.8; /* Reduz levemente a opacidade da imagem ao passar o mouse */
}

.system-button:hover {
    background-color: #2b6ca6;
    transform: scale(1.1);
}

.system-button:focus {
    outline: 2px solid #ffcc00; /* Realça o botão ativo */
}

.custom-login-btn {
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: #555;
    line-height: 1.2;
    padding: 10px 25px;
    border-radius: 25px;
    background: #f2f2f2;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.custom-login-btn:hover {
    background: rgba(200, 80, 110, 0.8);
    color: #fff;
    transform: scale(1.05);
}

/* Login Form Button */
.container-login100-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.login100-form-btn {
    font-family: Poppins-Medium;
    font-size: 16px;
    color: #555555;
    line-height: 1.2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    min-width: 120px;
    height: 50px;
    border-radius: 25px;
    background: #9152f8;
    background: -webkit-linear-gradient(bottom, #797aa4, #c2526d);
    background: -o-linear-gradient(bottom, #797aa4, #c2526d);
    background: -moz-linear-gradient(bottom, #797aa4, #c2526d);
    background: linear-gradient(bottom, #797aa4, #c2526d);
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.login100-form-btn::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background-color: #fff;
    top: 0;
    left: 0;
    opacity: 1;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.login100-form-btn:hover {
    color: #fff;
}

.login100-form-btn:hover:before {
    opacity: 0;
}

/* Background Image for Login Page */
.container-login100 {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url('../images/bg-01.jpg');
}

span img {
    display: block; /* Garante que a imagem seja tratada como um bloco */
    margin: 0 auto 20px auto; /* Adiciona espaço abaixo da imagem (20px neste exemplo) e centraliza */
}

.wrap-input100 {
    margin-top: 20px; /* Espaço acima do campo do formulário */
}


/* Responsive Adjustments */
@media (max-width: 576px) {
    .system-button {
        font-size: 14px;
        padding: 10px;
    }
    .system-button img {
        width: 25px;
        height: 25px;
    }
}
