@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", serif;
}

body {
    background: linear-gradient(to bottom left, #d3d3d3, #ffffff);
    /*background: url(./BackgroundOrange2.png) no-repeat center center fixed;*/
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Aumentei o espaço entre os elementos */
    border: 1px solid #bababa;
    padding: 30px;
    border-radius: 10px;
    width: 50vh;
    /*box-shadow: 16px 16px 0 0 #7e7e7e;*/
    box-shadow: 
    inset 0 2px 2px rgba(255, 255, 255, 0.1), 
    inset 0 4px 4px rgba(255, 255, 255, 0.1), 
    0 2px 2px rgba(110, 116, 155, 0.1), 
    0 4px 4px rgba(110, 116, 155, 0.1), 
    0 8px 8px rgba(110, 116, 155, 0.15), 
    0 16px 16px rgba(110, 116, 155, 0.2), 
    0 32px 32px rgba(110, 116, 155, 0.25);
    
    background-color: #fff;
    transition:  all 0.3s ease;
}

#title {
    font-weight: 600;
    font-size: 20px;
    color: #525252;
    text-align: center;
}

.content input {
    width: 100%;
    padding: 10px; 
    border-radius: 10px;
    border: 1px solid #bababa;
    font-weight: 400;
    font-size: 13px;
    outline: none;
    transition: all 0.3s ease;;
}

.content input:hover {
    border: 1px solid #FF4A19;
}

.content input:focus {
    border: 1px solid #FF4A19;
}

#subtitle {
    text-align: left;
    color: #7e7e7e;
    font-weight: 400;
}

#randomCodeContainer {
    display: none;
    width: 100%;
    margin-top: 20px;
}

.password-container {
    display: flex; 
    align-items: center; 
    width: 100%;
}

.password-container input {
    flex: 1; 
}

.password-container {
    position: relative;
}

#togglePassword {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #FF4A19;
}

#regenerateCode {
    padding: 4px;
    margin: 4px;
    border-radius: 25px;
    border: none;
    width: 10%;
    transition: all ease-in-out 0.2s;
}

#regenerateCode:hover {
    color: #555454;
    transition: ease-in-out 0.2s;
}

#userCode {
    width: 100%;
    padding: 10px; 
    border-radius: 10px;
    border: 1px solid #bababa;
    font-weight: 400;
    font-size: 13px;
    outline: none;
}

#code {
    margin-top: 5px;
    padding: 10px; 
    border-radius: 10px;
    border: none;
    font-weight: 400;
    font-size: 13px;
    outline: none;
    background-color: #3493ff;
    color: #ffffff;
    width: 100%; 
    cursor: pointer;
    transition: all ease-in-out 0.3s;
    /*box-shadow: 16px 16px 0 0 #7e7e7e;*/
    box-shadow: 
    0 2px 2px rgba(110, 116, 155, 0.1), 
    0 4px 4px rgba(110, 116, 155, 0.1), 
    0 8px 8px rgba(110, 116, 155, 0.15), 
    0 16px 16px rgba(110, 116, 155, 0.2), 
    0 32px 32px rgba(110, 116, 155, 0.25); /* Sombra externa */
}


#code:hover {
    background-color: #1884ff;
    transition: ease-in-out 0.3s;
    border-radius: 20px;
    box-shadow: 
      0 2px 2px rgba(110, 116, 155, 0.1), 
      0 4px 4px rgba(110, 116, 155, 0.1), 
      0 8px 8px rgba(110, 116, 155, 0.15), 
      0 16px 16px rgba(110, 116, 155, 0.2), 
      0 32px 32px rgba(110, 116, 155, 0.25); /* Volta à sombra original */
}

.copyCode {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 10px;
}

.copy-button {
    padding: 4px;
    margin: 4px;
    border-radius: 25px;
    border: none;
    width: 10%;
    transition: all ease-in-out 0.2s;
    background-color: #fff;
    color: #131313;
    cursor: pointer;
}

.copy-button:hover {
    color: #555454;
    transition: ease-in-out 0.2s;
}

#acess {
    background-color: #FC4A1A;
    color: #fff;
    cursor: pointer;
    border: none;
    width: 100%; 
    padding: 10px; 
    transition: 0.2s;
    box-shadow: 
    0 2px 2px rgba(110, 116, 155, 0.1), 
    0 4px 4px rgba(110, 116, 155, 0.1), 
    0 8px 8px rgba(110, 116, 155, 0.15), 
    0 16px 16px rgba(110, 116, 155, 0.2), 
    0 32px 32px rgba(110, 116, 155, 0.25); /* Sombra externa */
    transition: transform 0.2s, box-shadow 0.2s; /* Transição suave */
}

#acess:active {
    transform: translateY(0); /* Retorna à posição original */
    box-shadow: 
      0 2px 2px rgba(110, 116, 155, 0.1), 
      0 4px 4px rgba(110, 116, 155, 0.1), 
      0 8px 8px rgba(110, 116, 155, 0.15), 
      0 16px 16px rgba(110, 116, 155, 0.2), 
      0 32px 32px rgba(110, 116, 155, 0.25); /* Volta à sombra original */
}

#acess:hover {
    background-color: #ff8d6d;
    transform: translateY(-2px); /* Levanta o botão */
    box-shadow: 
    0 4px 4px rgba(110, 116, 155, 0.15), 
    0 8px 8px rgba(110, 116, 155, 0.2), 
    0 16px 16px rgba(110, 116, 155, 0.25), 
    0 32px 32px rgba(110, 116, 155, 0.3), 
    0 64px 64px rgba(110, 116, 155, 0.35); /* Aumenta a sombra */

}

#codeForm {
    text-align: center;
    width: 100%; 
    padding-top: 16px;
    display: none;
}

#codeForm h3 {
    font-weight: 600;
    font-size: 18px;
    color: #525252;
}

#codeForm button {
    width: 100%;
    padding: 8px;
    border-radius: 10px;
    border: 1px solid #bababa;
    font-weight: 400;
    font-size: 13px;
    outline: none;
    background-color: #fff;
    cursor: pointer;
    margin-top: 10px;
}

#codeForm button:hover {
    border: 1px solid #FF4A19;
    transition: ease-in-out 0.3s;
}

/*NOTIFICATION CARD*/
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}
  
.notification.hidden {
    display: none;
}
  
.notification-content h4 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}
  
.notification-content p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}
  
.close-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    padding: 0;
    margin: 0;
}
  
.close-btn:hover {
    color: #000;
}
