:root{
    --input   : #0e1216;
    /* --input   : #131a20; */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #131a20;
    height: 100vh;
    margin: 0;
    padding: 0; 

    /* display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background: #131a20;
    height: 100%;
    margin: 0;
    padding: 0;  */
}
 
p{
    color: white;
    font-size: 14px;
}

h2 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size:34px;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1.5px;
}



.container {
    background-color: #18232f;
    background-color: #192330;
    background: linear-gradient(
    to bottom,
    #131a20 0%,
    #1c2934 0%,
    #0e1c2c 80%,
    #141e28 100%
    ); 
    padding: 40px;
    /* border-radius: 10px; */
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 3px 7px 1px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 350px;
    min-height:450px; 
}


.form-group {
    margin-bottom: 35px;
}

.form-group label {
    color: #aaa;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 14px;
    background: var(--input);
    border: 1px solid  var(--input);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

@media (max-width: 920px) {
    .form-group input {
        padding: 18px;
    }
}



.form-group input:focus {
    border-color: #046ec4;
    outline:none;
    border: 1px solid #1a54a6;
    box-shadow: 0 0 0 3px rgba(26, 84, 166, 0.3);
}

.btn {
    width: 100%;
    padding: 12px;
    background: #046ec4;
    border: none;
    /* border-radius: 8px; */
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #047cdf;
}

.btn.install{
    width:65%;
    font-size:14px;
}

.switch {
    text-align: center;
    margin-top: 20px;
}

.switch a {
    color: #047cdf;
    text-decoration: none;
    font-size: 14px;
}

.switch a:hover {
    text-decoration: underline;
}

@media (max-width: 720px) {
    .container {
        padding-left: 20px; 
        padding-right: 20px; 
    }
}

/* PLACEHOLDER*/

.floating-label-group {
    position: relative;
    /* margin-top: 20px; */
    width:100%;
    text-align: center;
}

.floating-label-group input {
    font-size: 14px;
}

.floating-label-group label {
    color: #999;
    font-size: 14px;
    position: absolute;
    pointer-events: none;
    left: 10px;
    top:15px;
    transition: 0.2s ease all;
}

/* Ativado quando o input tem foco OU valor preenchido */
.floating-label-group input:focus ~ label,
.floating-label-group input:valid ~ label {
    top: -21px;
    left:0px;
    font-size: 14px;
}

#alert-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    min-width: 400px;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    z-index: 9999;
    pointer-events: none;
}

.alert {
    padding: 16px;
    color: #fff;
    font-family: sans-serif;
    pointer-events: auto;
    animation: fadeIn 0.3s ease;
    box-shadow: 10px 2px 18px rgba(0,0,0,0.3);
    opacity: 1;
    transition: opacity 0.8s ease;
    opacity: 0.9;
    font-size:14px;
}

/* Status: 0 = erro */
.alert-error {
    border: 2px solid #832727;
    background-color: #aa4646b0;
}

.alert-success {
    border: 1px solid #0f438b ;
    background-color: #112c53 ;
}


