81 lines
1.4 KiB
CSS
81 lines
1.4 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html, body {
|
|
height: 100%;
|
|
font-family: Inter, Arial, sans-serif;
|
|
background-color: #f2f2f2;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 2rem;
|
|
position: relative;
|
|
background: #ffffff;
|
|
background: linear-gradient(0deg,rgba(255, 255, 255, 1) 90%, rgba(30, 144, 255, 1) 100%);
|
|
}
|
|
|
|
.modal-box {
|
|
background-color: white;
|
|
padding: 2rem;
|
|
border-radius: 8px;
|
|
border: 1px solid #ddd;
|
|
max-width: 400px;
|
|
width: 100%;
|
|
z-index: 1;
|
|
}
|
|
|
|
.modal-title {
|
|
font-size: 28px;
|
|
font-weight: 600;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.input-group {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: stretch;
|
|
border: 1px solid #ccc;
|
|
border-radius: 5px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.input-icon {
|
|
padding: 10px;
|
|
}
|
|
|
|
.input-field {
|
|
flex: 1;
|
|
border: none;
|
|
}
|
|
|
|
.icon-wrapper {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.icon {
|
|
width: 64px;
|
|
height: 64px;
|
|
}
|
|
|
|
.footer {
|
|
position: absolute;
|
|
bottom: 1rem;
|
|
text-align: center;
|
|
color: #999;
|
|
font-size: 0.9rem;
|
|
}
|
|
|