* {
    padding: 0;
    margin: 0;
}

p {
    font-size: 16px;
}

label {
    font-size: 14px;
}

input {
    font-size: 16px;
    margin: 16px 0;
    outline: none;
    border: none;
    border-bottom: 1px solid #ffffff;
    background-color: transparent;
    padding: 10px;
    color: white;
}

button {
    font-size: 12px;
    margin-bottom: 14px;
}

body {
    background-image: linear-gradient(to bottom, rgb(73, 0, 102), rgb(0, 0, 0));
    width: 100%;
    background-repeat: no-repeat;
    height: 130vh;
    color: #000000;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

main {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin: auto;
    color: white;
}

.loading {
    position: absolute;
    width: 100%;
    height: 100vh;
}

.hidden {
    display: none;
}

.logo-storm{
    width: 120px;
    margin-top: 32px;
    border: 3px solid rgb(255, 255, 255);
    border-radius: 50%;
}

.hero {
    width: 100%;
}


.hero h2 {
    margin-bottom: 1.2rem;
}

.hero p {
    font-weight: bold;
    text-align: center;
    width: 80%;
    margin: auto;
}

form {
    margin-top: 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

form button {
    width: 16rem;
    font-weight: bold;
    cursor: pointer;
}

select {
    padding: 12px 4px;
    font-size: 12px;
    font-weight: bold;
}



#send {
    background: #53c234a1;  
    background: -webkit-linear-gradient(to left, #06170070, #52c234);
    background: linear-gradient(to left, #06170083, #52c234);
    color: white;
}

#back {
    background: #FF416C;  
    background: -webkit-linear-gradient(to right, #FF4B2B, #FF416C);
    background: linear-gradient(to right, #FF4B2B, #FF416C);
    color: white;
}

.back {
    display: none;
}

.send {
    display: none;
}

.next {
    background-color: transparent;
    border: 2px solid rgb(211, 34, 255);
    color: white;
    
}

.buttons {
    -webkit-border-radius: none;
    -webkit-padding: 12px 0;
    border-radius: none;
    padding: 12px 0;
    font-size: 14px;
}

.next:hover {
    background-color: rgba(255, 255, 255, 0.099);
}


.marca {
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin: auto;
}

.wrapper {
    display: none;
    width: 80%;
}

.selected {
    display: flex;
    flex-direction: column;
    grid-template-columns: repeat(3, 1fr);
}

.selected.grid {
    display: grid;
    justify-content: center;
}

.modal .container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.modal .container input {
    width: 100%;
    padding-left: 0;
    color: rgb(7, 206, 206);

}