/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Apply gradient background */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to bottom, #e3f2fd, #bbdefb);
    margin: 0;
}

/* Android Frame */
.android-app-frame {
    width: 400px;
    height: 800px;
    background: black;
    border-radius: 40px;
    border: 8px solid black;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    padding: 0;
}

/* Simulated notch */
.android-notch {
    width: 100px;
    height: 20px;
    background: black;
    border-radius: 10px;
    position: absolute;
    top: 5px;
}

/* Inner screen */
.android-frame {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #f8f9fa, #e3f2fd);
    box-shadow: none;
    padding: 20px;
}

/* Container */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Login Box */
.login-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    max-width: 320px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo-img {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
}

/* Title */
.title {
    font-size: 26px;
    font-weight: bold;
    color: black;
    margin-bottom: 10px;
}

/* Slogan */
.slogan {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Input Fields */
.input-field {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
}

/* Buttons */
.continue-btn, .social-btn {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.continue-btn {
    background: #ccc;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.continue-btn:hover, .social-btn:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

/* Forgot Password */
.forgot-password {
    font-size: 12px;
    color: blue;
    cursor: pointer;
    margin-bottom: 15px;
    text-decoration: underline;
}

/* Separator */
.separator {
    margin: 15px 0;
    font-weight: bold;
    color: #666;
}

/* Sign-up Text */
.signup-text {
    font-size: 14px;
    margin-top: 10px;
}

.signup-link {
    color: blue;
    cursor: pointer;
    font-weight: bold;
}
