/* src/App.css */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
* {
font-family: jost;
font-weight: 300;
}
.fixed {
position: fixed;
top: 50%;
left: 50%;
background-color: rgb(248, 252, 243);
width: 300px;
height: 500px;
transform: translate(-50%, -50%);
border: 1px solid gray;
border-radius: 4px;
display: flex;
padding: 12px;
flex-direction: column;
justify-content: center;
align-items: center;
box-shadow: 1px 1px 2px 0px rgb(91, 97, 97);
opacity: 0;
transition: opacity 0.5s ease;
}
.m-text {
text-align: center;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
letter-spacing: 4px;
color: rgb(56, 86, 4);
}
.d-text {
font-size: 14px;
text-align: center;
}
.input-main {
padding: 12px;
width: 250px;
}
.btn-main {
background-color: rgb(64, 96, 64);
color: white;
padding: 12px;
border: 2px solid gray;
}
.promise {
font-size: 12px;
}
.cross-btn {
position: absolute;
top: 30px;
background-color: rgb(70, 70, 70);
color: white;
width: 40px;
height: 40px;
display: flex;
justify-content: center;
align-items: center;
right: 30px;
border-radius: 100%;
cursor: pointer;
}
.header {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.form-header {
font-size: 20px;
letter-spacing: 3px;
}
.inputs {
display: flex;
flex-direction: column;
width: 200px;
gap: 10px;
}
input {
padding: 8px;
border-radius: 24px;
border: 1px solid gray;
}
.submit-btn {
background-color: rgb(21, 186, 112);
margin-top: 20px;
text-align: center;
border-radius: 24px;
padding: 12px;
color: white;
letter-spacing: 4px;
}
.main-btn {
position: fixed;
top: 10%;
right: 10%;
background-color: rgb(255, 255, 255);
color: rgb(49, 49, 49);
border: 1px solid gray;
border-radius: 24px;
padding: 20px;
box-shadow: 1px 1px 1px gray;
cursor: pointer;
}
.main-btn:hover {
background-color: rgb(26, 148, 97);
color: white;
transition: 0.5s ease;
}