mtm-vpn-client-public/styles/LandingPage.module.css
Nabarun 3aef3937eb Update website heading logo (#3)
Co-authored-by: Pranav <jadhavpranav89@gmail.com>
Reviewed-on: #3
Co-authored-by: Nabarun <nabarun@deepstacksoft.com>
Co-committed-by: Nabarun <nabarun@deepstacksoft.com>
2025-08-14 09:19:12 +00:00

198 lines
3.2 KiB
CSS

.container {
min-height: 100vh;
background: linear-gradient(135deg, #1e293b 0%, #1e40af 50%, #54c3d4 100%);
position: relative;
overflow: hidden;
}
.backgroundEffects {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
pointer-events: none;
z-index: 1;
}
.bgEffect1 {
position: absolute;
top: -160px;
right: -160px;
width: 320px;
height: 320px;
background: rgba(84, 195, 212, 0.1);
border-radius: 50%;
filter: blur(60px);
}
.bgEffect2 {
position: absolute;
bottom: -160px;
left: -160px;
width: 320px;
height: 320px;
background: rgba(34, 211, 238, 0.1);
border-radius: 50%;
filter: blur(60px);
}
.header {
position: relative;
z-index: 10;
}
.nav {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}
.navContent {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.5rem 0;
}
.logo {
color: white;
filter: brightness(0) invert(1);
}
.main {
position: relative;
z-index: 10;
max-width: 1200px;
margin: 0 auto;
padding: 3rem 1rem;
}
.content {
display: grid;
grid-template-columns: 1fr;
gap: 3rem;
align-items: center;
}
@media (min-width: 1024px) {
.content {
grid-template-columns: 1fr 1fr;
}
}
.textSection {
text-align: center;
}
@media (min-width: 1024px) {
.textSection {
text-align: left;
}
}
.title {
font-size: 2.5rem;
font-weight: 800;
margin-bottom: 1.5rem;
line-height: 1.1;
}
@media (min-width: 768px) {
.title {
font-size: 3.75rem;
}
}
.titleWhite {
color: white;
}
.titleGradient {
background: linear-gradient(45deg, #54c3d4, #22d3ee);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
}
.downloadButton {
display: inline-flex;
align-items: center;
padding: 1rem 2rem;
font-size: 1.125rem;
font-weight: 600;
color: #1e293b;
background: white;
border: none;
border-radius: 9999px;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
cursor: pointer;
transition: all 0.2s;
text-decoration: none;
}
.downloadButton:hover {
background: #f3f4f6;
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
transform: scale(1.05);
}
.phoneIcon {
width: 1.5rem;
height: 1.5rem;
margin-right: 0.5rem;
stroke: currentColor;
fill: none;
stroke-width: 2;
}
.imageSection {
display: flex;
justify-content: center;
margin-top: 2rem;
}
@media (min-width: 1024px) {
.imageSection {
justify-content: flex-end;
margin-top: 0;
}
}
.imageContainer {
position: relative;
width: 288px;
max-width: 100%;
}
.appImage {
width: 100%;
height: auto;
border-radius: 1.5rem;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
border: 4px solid rgba(255, 255, 255, 0.2);
}
.imageEffect1 {
position: absolute;
top: -1rem;
right: -1rem;
width: 4rem;
height: 4rem;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
filter: blur(12px);
}
.imageEffect2 {
position: absolute;
bottom: -1rem;
left: -1rem;
width: 5rem;
height: 5rem;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
filter: blur(12px);
}