/*
 * Copyright 2025 Tushar Kumar Sahu
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */


*{
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.4;
    color: #fefefe;
}

body{
    background-color: #040133fd;
    padding: 50px 20px;
    font-size: 18px;
}

main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo{
   height: 100px;
   margin-bottom: 10px;
}

h1{
    text-align: center;
    max-width: 350px;
    margin: 20px auto;
}

.form{
    width: 500px;
    max-width: 90%;
    background-color: #2f2f4d;
    text-align: center;
    margin-bottom: 10px;
}

label{
    display: inline-block;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

input{
    display: block;
    width: 90%;
    margin: 10px auto;
    height: 60px;
    font-size: 2rem;
    padding: 10px;
    background-color: #050125fd;
}

button{
    width: 90%;
    height: 60px;
    border-radius: 5px;
    background: linear-gradient(150deg,#f8a202fd,#dda303fd);
    color: #030303;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 5px;
    margin: 10px auto;
}

.output{
    width: 500px;
    max-width: 90%;
    text-align: center;
    margin: 20px auto;
    border: 1.5px solid #fefefe;
    background-color: #2f2f4d;
    padding: 10px 5px;
    font-size: 1.7rem;
    overflow-wrap: break-word;
}

.alert{
    border: 3px solid #6b0303;
    background-color: #fa6565f8;
    color: #720202;
    font-size: 1.3rem;
}

.hidden{
    display: none;
}
